@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  --bg: #0a0a14;
  --card: #13131f;
  --card2: #16162a;
  --border: #2a2a40;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --text: #f0f0f8;
  --muted: #8888aa;
  --green: #22c55e;
  --telegram: #229ED9;
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333355; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, #13131f, #1a1a30, #13131f);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 600;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.announcement-bar .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(10,10,20,0.88);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
}

.navbar-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

.nav-links a.active { color: var(--gold); }

.nav-links .charity-btn {
  background: #16a34a;
  color: white !important;
  border-radius: 10px;
  padding: 8px 14px;
}

.nav-links .charity-btn:hover { background: #15803d; }

.nav-contact {
  background: linear-gradient(135deg, #B8960C, var(--gold), var(--gold-light));
  color: #0a0a14 !important;
  font-weight: 800 !important;
  padding: 9px 18px !important;
  border-radius: 12px !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,20,0.97);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 32px;
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-menu a:hover { background: rgba(255,255,255,0.07); color: var(--gold); }
.mobile-menu .charity-btn { background: #16a34a; color: white !important; }
.mobile-menu-close {
  position: absolute;
  top: 20px; left: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,20,0.65) 0%, rgba(10,10,20,0.35) 50%, rgba(10,10,20,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(240,240,248,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.23,1,0.32,1);
  font-family: inherit;
}

.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, #B8960C, var(--gold), var(--gold-light));
  background-size: 200% auto;
  color: #0a0a14;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(212,175,55,0.4);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-telegram {
  background: var(--telegram);
  color: white;
}

.btn-telegram:hover {
  background: #1a8bc4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34,158,217,0.4);
}

.btn-green {
  background: #16a34a;
  color: white;
}

.btn-green:hover { background: #15803d; transform: translateY(-2px); }

/* ===== SECTION ===== */
.section { padding: 80px 20px; }
.section-alt { background: rgba(19,19,31,0.5); }

.container { max-width: 1280px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 48px; }

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  margin-bottom: 8px;
}

.section-sub { color: var(--muted); font-size: 15px; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 24px 20px;
  text-align: center;
  border-left: 1px solid var(--border);
}

.stat-item:last-child { border-left: none; }

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ===== SERVER CARDS ===== */
.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.server-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}

.server-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.4);
}

.server-card-header {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.server-card-header.nova { background: linear-gradient(135deg, #db2777, #f97316); }
.server-card-header.falcon { background: linear-gradient(135deg, #ca8a04, #fbbf24); }
.server-card-header.aroma { background: linear-gradient(135deg, #7f1d1d, #dc2626); }

.server-logo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.server-name { font-size: 1.3rem; font-weight: 900; color: white; }
.server-name-en { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; }

.server-card-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }

.server-tagline {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  margin-bottom: 16px;
}

.server-features { list-style: none; margin-bottom: 20px; flex: 1; }

.server-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(240,240,248,0.88);
  padding: 5px 0;
}

.server-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.server-card-btns {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.server-card-btns a {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.2s;
}

/* ===== SUBSCRIPTION CARDS ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.pkg-card {
  background: linear-gradient(145deg, var(--card), var(--card2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}

.pkg-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}

.pkg-card.featured {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 10px 30px rgba(212,175,55,0.15);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.pkg-badge.bestseller { background: linear-gradient(135deg, #22c55e, #16a34a); color: white; }
.pkg-badge.popular { background: linear-gradient(135deg, #eab308, #f59e0b); color: #0a0a14; }

.pkg-duration { font-size: 1.1rem; font-weight: 900; margin-bottom: 4px; }
.pkg-devices { font-size: 12px; color: var(--muted); margin-bottom: 14px; }

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pkg-price-main { font-size: 2rem; font-weight: 900; color: var(--gold); }
.pkg-price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.pkg-discount {
  font-size: 11px;
  background: rgba(34,197,94,0.15);
  color: var(--green);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
}

.pkg-btns { display: flex; gap: 8px; margin-top: auto; }

.pkg-btns a {
  flex: 1;
  text-align: center;
  padding: 9px 6px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  transition: all 0.2s;
}

.pkg-btn-try {
  border: 1px solid rgba(34,158,217,0.4);
  color: var(--telegram);
}

.pkg-btn-try:hover { background: rgba(34,158,217,0.1); }

.pkg-btn-sub {
  background: linear-gradient(135deg, #B8960C, var(--gold));
  color: #0a0a14;
}

.pkg-btn-sub:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,175,55,0.4); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.review-card {
  background: linear-gradient(145deg, var(--card), var(--card2));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.25);
}

.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #0a0a14;
  flex-shrink: 0;
}

.review-name { font-weight: 800; font-size: 14px; }
.review-date { font-size: 11px; color: var(--muted); }
.review-stars { color: #F0D060; font-size: 14px; margin-bottom: 8px; }
.review-text { font-size: 13px; color: rgba(240,240,248,0.8); line-height: 1.6; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
}

.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
  text-align: right;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--gold); }

.faq-arrow {
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-item.open .faq-a { display: block; }

/* ===== BANNER ===== */
.banner-section {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 0 20px;
}

.banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,20,0.85) 40%, rgba(10,10,20,0.3));
  display: flex;
  align-items: center;
  padding: 40px;
}

.banner-content { max-width: 500px; }
.banner-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.banner-content p { color: rgba(240,240,248,0.8); margin-bottom: 24px; line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 40px;
}

.footer-brand h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; }

.footer-links h4 { font-weight: 800; margin-bottom: 14px; color: var(--gold); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.footer-social a:hover { background: rgba(212,175,55,0.15); border-color: var(--gold); }

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.2s;
  white-space: nowrap;
}

.float-btn:hover { transform: translateX(-4px); }
.float-telegram { background: var(--telegram); color: white; }
.float-charity { background: #16a34a; color: white; }

/* ===== CHARITY PAGE ===== */
.quran-player {
  background: linear-gradient(135deg, rgba(22,163,74,0.12), rgba(5,150,105,0.08));
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 40px;
}

.quran-player h3 { font-size: 1.2rem; font-weight: 800; color: var(--green); margin-bottom: 16px; }

.quran-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.quran-select {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}

.quran-play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.quran-play-btn:hover { background: #15803d; transform: scale(1.08); }

.quran-track-info {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.charity-comments { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }

.charity-comment {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 12px;
}

.charity-comment-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.charity-comment-name { font-weight: 800; font-size: 14px; }
.charity-comment-date { font-size: 11px; color: var(--muted); }
.charity-comment-text { font-size: 13px; color: rgba(240,240,248,0.85); line-height: 1.6; margin-top: 6px; }

.comment-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  margin-top: 32px;
}

.comment-form h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 18px; color: var(--gold); }

.form-group { margin-bottom: 14px; }

.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--muted); }

.form-input, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: rgba(22,163,74,0.5);
}

.form-textarea { min-height: 90px; resize: vertical; }

.stars-input { display: flex; gap: 6px; margin-bottom: 14px; }
.stars-input span { font-size: 24px; cursor: pointer; color: #444; transition: color 0.15s; }
.stars-input span.active { color: #F0D060; }

/* ===== MIBOX PAGE ===== */
.mibox-hero {
  background: linear-gradient(135deg, rgba(234,179,8,0.1), rgba(245,158,11,0.05));
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.mibox-img {
  max-width: 380px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(212,175,55,0.2);
}

.mibox-info { flex: 1; min-width: 260px; }
.mibox-info h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 14px; }
.mibox-info p { color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.spec-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.spec-label { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.spec-value { font-size: 14px; font-weight: 800; color: var(--gold); }

.steps-list { display: flex; flex-direction: column; gap: 16px; }

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a14;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.step-content h4 { font-weight: 800; margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 60px 20px 40px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(19,19,31,0.8), transparent);
}

.page-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 10px; }
.page-header p { color: var(--muted); font-size: 15px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--muted); }

/* ===== SERVER DETAIL ===== */
.server-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.server-detail-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212,175,55,0.3);
}

.server-detail-info h2 { font-size: 1.6rem; font-weight: 900; }
.server-detail-info p { color: var(--muted); font-size: 14px; margin-top: 4px; }

.server-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.server-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.server-stat strong { color: var(--gold); font-weight: 800; }

/* ===== ANIMATIONS ===== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.animate-in { animation: fadeInUp 0.6s ease-out forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-contact { display: none; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2rem; }

  .stats-bar { border-radius: 14px; }
  .stat-item { min-width: 100px; padding: 16px 12px; }
  .stat-num { font-size: 1.5rem; }

  .banner-img { height: 260px; }
  .banner-overlay { padding: 20px; }

  .mibox-hero { padding: 24px; gap: 24px; }
  .mibox-img { max-width: 100%; }

  .float-btns { right: 12px; bottom: 60px; }
  .float-btn { padding: 10px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .server-detail-header { flex-direction: column; text-align: center; }
  .server-stats { justify-content: center; }
}

/* ===== BESTSELLER SLIDER (side-by-side) ===== */
.bs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.bs-track {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-height: 420px;
  position: relative;
}

.bs-slide {
  display: none;
  animation: bsFadeIn 0.45s cubic-bezier(0.23,1,0.32,1);
}
.bs-slide.bs-active,
.bs-slide.bs-active2 {
  display: block;
}
.bs-slide.bs-hidden { display: none; }

@keyframes bsFadeIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.bs-card {
  background: linear-gradient(145deg, #16162a, #1e1e38);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.bs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.5);
}

.bs-card-badge {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, #D4AF37, #F0D060);
  color: #0a0a14;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.bs-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 16px;
}
.bs-card-logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.bs-card-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}
.bs-card-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}

.bs-card-duration {
  font-size: 1rem;
  color: #a0a0cc;
  margin-bottom: 16px;
  font-weight: 600;
}

.bs-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.bs-price-main {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.bs-price-cur {
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 700;
}
.bs-price-old {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.bs-discount {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(34,197,94,0.3);
}

.bs-card-device {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.bs-card-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.bs-nav {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bs-nav:hover {
  background: var(--gold);
  color: #0a0a14;
  transform: scale(1.1);
}

.bs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.bs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212,175,55,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.bs-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 700px) {
  .bs-track {
    grid-template-columns: 1fr;
  }
  .bs-slide.bs-active2 { display: none; }
  .bs-price-main { font-size: 2.2rem; }
}

/* ===== SOCIAL PROOF NOTIFICATIONS ===== */
#socialNotifContainer {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  max-width: 340px;
  pointer-events: none;
}

.sn-item {
  background: rgba(15, 15, 30, 0.95);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #e8e8f8;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.1);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateX(-30px) scale(0.95);
  transition: opacity 0.35s cubic-bezier(0.23,1,0.32,1), transform 0.35s cubic-bezier(0.23,1,0.32,1);
  pointer-events: auto;
}
.sn-item.sn-show {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.sn-item.sn-hide {
  opacity: 0;
  transform: translateX(-20px) scale(0.95);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}

.sn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.sn-text {
  line-height: 1.4;
  flex: 1;
}

@media (max-width: 480px) {
  #socialNotifContainer {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 80px;
  }
  .sn-item { font-size: 12px; }
}
