:root {
  --main: #8e6d1c;
  --main-dark: #6d5314;
  --gold: #d4af37;
  --bg: #fdfaf5;
  /* لون كريمي هادئ */
  --vodafone: #e60000;
  --vodafone-light: #fff5f5;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 15px 35px rgba(142, 109, 28, 0.2);
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 400px;
  padding: 20px;
}

.logo img {
  width: 110px;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

h1 {
  color: var(--main);
  margin-bottom: 35px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* أزرار التشغيل - تحسين التفاعل */
.play-btn {
  background: linear-gradient(135deg, var(--main), var(--main-dark));
  color: white;
  border: none;
  padding: 20px 45px;
  border-radius: 20px;
  /* شكل مستطيل بزوايا دائرية فخمة */
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  box-shadow: var(--shadow-strong);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(142, 109, 28, 0.4);
  filter: brightness(1.1);
}

.play-btn:active {
  transform: scale(0.96);
}

/* قسم الدعم - تحسين الكارد */
.support-section {
  background: var(--white);
  padding: 25px;
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 25px;
  box-shadow: var(--shadow-soft);
}

.support-section h2 {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.support-section h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 25%;
  width: 50%;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}

/* شبكة الأسعار */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.price-btn {
  background: #ffffff;
  border: 2px solid #f0f0f0;
  padding: 12px 5px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 700;
  color: var(--vodafone);
  font-size: 1rem;
}

.price-btn:hover {
  background: var(--vodafone);
  color: white;
  border-color: var(--vodafone);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 0, 0, 0.2);
}

/* مودال الدعم - Glassmorphism */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  /* تأثير الضباب الخلفي */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.modal-card {
  background: white;
  padding: 30px;
  border-radius: 28px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.phone-number {
  font-size: 1.6rem;
  color: var(--vodafone);
  font-weight: 800;
  margin: 20px 0;
  display: block;
  border: 2px dashed var(--vodafone);
  padding: 15px;
  border-radius: 16px;
  background: var(--vodafone-light);
  letter-spacing: 1px;
  cursor: pointer;
}

.close-modal {
  background: #f0f0f0;
  color: #444;
  border: none;
  padding: 14px 20px;
  border-radius: 14px;
  margin-top: 10px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  transition: 0.2s;
}

.close-modal:hover {
  background: #e5e5e5;
}

/* شريط التنبيه (Toast) */
#toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  /* لون داكن وأنيق */
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 500;
  display: none;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}