/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #e5e7eb;
  background: #0a0a0f;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== UTILITIES ========== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ========== GOLD TEXT ========== */
.vip-gold {
  background: linear-gradient(135deg, #d4af37 0%, #f5e6a8 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ========== HEADER ========== */
.site-header {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; color: #fff; }
.logo-img { height: 36px; width: auto; border-radius: 8px; }
.logo-mark {
  background: linear-gradient(135deg, #d4af37 0%, #f5e6a8 50%, #d4af37 100%);
  color: #0a0a0f; width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.main-nav a:hover, .main-nav a.active { color: #d4af37; }
.btn-nav {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #0a0a0f; padding: 8px 18px; border-radius: 6px;
  font-size: 0.85rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}
.btn-nav:hover { background: linear-gradient(135deg, #f5e6a8 0%, #d4af37 100%); }


/* ========== VIP BUTTONS ========== */
.vip-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.3s ease;
  border: none; cursor: pointer;
}
.vip-btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #0a0a0f;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}
.vip-btn-gold:hover {
  background: linear-gradient(135deg, #f5e6a8 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}
.vip-btn-outline {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.vip-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,55,0.4);
}
.vip-btn-whatsapp {
  background: #25d366; color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.vip-btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); }
.vip-btn-telegram {
  background: #0088cc; color: #fff;
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}
.vip-btn-telegram:hover { background: #006daa; transform: translateY(-2px); }

/* ========== ORBS ========== */
.vip-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.orb-1 { width: 400px; height: 400px; background: #d4af37; top: -100px; right: -100px; }
.orb-2 { width: 300px; height: 300px; background: #7c3aed; bottom: -50px; left: -50px; animation-delay: -3s; }
.orb-3 { width: 200px; height: 200px; background: #ea580c; top: 50%; left: 50%; animation-delay: -5s; opacity: 0.2; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.vip-hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, #0a0a0f 100%);
  z-index: 1; pointer-events: none;
}

/* ========== VIP SECTION HEAD ========== */
.vip-section-head { text-align: center; margin-bottom: 64px; }
.vip-eyebrow {
  display: inline-block; padding: 6px 16px; margin-bottom: 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; color: #d4af37;
  letter-spacing: 2px; text-transform: uppercase;
}
.vip-section-head h2 {
  font-size: 2.5rem; font-weight: 800; color: #fff;
  margin-bottom: 12px; letter-spacing: -0.5px;
}
.vip-section-head p {
  color: rgba(255,255,255,0.5); font-size: 1.05rem;
  max-width: 600px; margin: 0 auto;
}


/* ========== VIP HERO (INDEX) ========== */
.vip-hero {
  position: relative;
  min-height: 90vh;
  padding: 120px 0 100px;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(124,58,237,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0f 0%, #13131c 100%);
  overflow: hidden;
  display: flex; align-items: center;
}
.vip-hero-inner { position: relative; z-index: 2; text-align: center; }
.vip-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
  color: #d4af37; margin-bottom: 32px;
}
.vip-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d4af37; box-shadow: 0 0 12px #d4af37;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.vip-headline {
  font-size: 4rem; font-weight: 800; line-height: 1.1;
  color: #fff; letter-spacing: -1.5px; margin-bottom: 24px;
}
.vip-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.65);
  max-width: 620px; margin: 0 auto 40px; line-height: 1.7;
}
.vip-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.vip-stats {
  display: inline-flex; align-items: center; gap: 40px;
  padding: 20px 40px; border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.vip-stat { display: flex; flex-direction: column; align-items: center; }
.vip-stat-num {
  font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, #d4af37 0%, #f5e6a8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vip-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }
.vip-stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }


/* ========== VIP PLAYERS GRID (INDEX) ========== */
.vip-players { padding: 100px 0; }
.vip-player-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
}
.vip-card {
  position: relative;
  background: linear-gradient(180deg, #1a1a26 0%, #13131c 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-width: 0;
}
.vip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.08);
}
.vip-card-shine {
  position: absolute; top: 0; left: -50%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.08) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.vip-card:hover .vip-card-shine { left: 150%; }
.vip-card-featured {
  background: linear-gradient(180deg, #1f1a0e 0%, #15120a 100%);
  border-color: rgba(212,175,55,0.3);
}
.vip-card-featured:hover { transform: translateY(-6px); }
.vip-card-ribbon {
  position: absolute; top: 12px; right: -34px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #0a0a0f;
  padding: 4px 36px;
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 1px;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}
.vip-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(124,58,237,0.1) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.vip-card-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.vip-card-icon span { font-size: 1.8rem; }
.vip-card-title { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.vip-card-tagline { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 16px; }
.vip-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent); margin: 0 0 16px; }
.vip-prices { flex: 1; margin-bottom: 20px; }
.vip-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vip-price-row:last-child { border-bottom: none; }
.vip-price-label { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.8rem; }
.vip-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(212,175,55,0.15); color: #d4af37;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800;
}
.vip-price-amount { font-size: 1.1rem; font-weight: 800; color: #d4af37; }
.vip-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  transition: all 0.3s ease;
}
.vip-card-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  border-color: transparent; color: #0a0a0f;
  box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}
.vip-card-featured .vip-card-btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #0a0a0f; border-color: transparent;
}
.vip-card-featured .vip-card-btn:hover {
  background: linear-gradient(135deg, #f5e6a8 0%, #d4af37 100%);
}


/* ========== VIP FEATURES (INDEX) ========== */
.vip-features {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vip-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.vip-feature { text-align: center; padding: 24px; border-radius: 16px; transition: all 0.3s ease; }
.vip-feature:hover { background: rgba(255,255,255,0.02); }
.vip-feature-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(124,58,237,0.1) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.vip-feature h4 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; font-weight: 700; }
.vip-feature p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }

/* ========== VIP PROCESS (INDEX) ========== */
.vip-process { padding: 100px 0; }
.vip-steps { display: flex; align-items: stretch; justify-content: center; gap: 24px; flex-wrap: wrap; }
.vip-step {
  flex: 1; min-width: 240px; max-width: 320px;
  padding: 32px;
  background: linear-gradient(180deg, #1a1a26 0%, #13131c 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; text-align: center;
  transition: all 0.3s ease;
}
.vip-step:hover { border-color: rgba(212,175,55,0.2); transform: translateY(-4px); }
.vip-step-num {
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, #d4af37 0%, #f5e6a8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.vip-step h4 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.vip-step p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }
.vip-step-arrow { display: flex; align-items: center; font-size: 1.5rem; color: rgba(212,175,55,0.4); }

/* ========== VIP CTA SECTION (INDEX) ========== */
.vip-cta-section { padding: 80px 0 120px; }
.vip-cta-box {
  position: relative; padding: 64px 40px;
  background: linear-gradient(135deg, #1a1a26 0%, #13131c 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px; overflow: hidden; text-align: center;
}
.vip-cta-glow {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.vip-cta-content { position: relative; z-index: 2; }
.vip-cta-content h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin: 12px 0 16px; }
.vip-cta-content p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 480px; margin: 0 auto 32px; }
.vip-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ============================================
   ========  VIP PLAYER DETAIL PAGE  ==========
   ============================================ */
.vip-player-hero {
  position: relative;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse at top left, rgba(212,175,55,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(124,58,237,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0f 0%, #13131c 100%);
  overflow: hidden;
}
.vip-player-hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 32px;
}
.vip-player-icon-lg {
  width: 100px; height: 100px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(124,58,237,0.1) 100%);
  border: 2px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(212,175,55,0.2);
  flex-shrink: 0;
}
.vip-player-icon-lg img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 20px;
}
.vip-player-icon-lg span { font-size: 3rem; }
.vip-player-hero-text h1 {
  font-size: 2.8rem; font-weight: 800; color: #fff;
  margin: 8px 0 6px; letter-spacing: -1px;
}
.vip-player-hero-text p {
  color: rgba(255,255,255,0.6); font-size: 1.1rem;
}

/* Player Content */
.vip-player-content { padding: 80px 0 120px; }
.vip-player-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* About Card */
.vip-about-card {
  background: linear-gradient(180deg, #1a1a26 0%, #13131c 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px;
}
.vip-about-card h2 {
  font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 16px;
}
.vip-about-desc {
  color: rgba(255,255,255,0.6); font-size: 0.95rem;
  line-height: 1.8; margin-bottom: 32px;
}
.vip-features-list h3 {
  font-size: 1rem; font-weight: 700; color: #d4af37;
  margin-bottom: 16px; letter-spacing: 0.5px;
}
.vip-feature-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vip-feature-item:last-child { border-bottom: none; }
.vip-feature-check {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #d4af37; flex-shrink: 0;
}
.vip-feature-item span { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

.vip-mac-info {
  margin-top: 32px;
  display: flex; gap: 16px; padding: 20px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
}
.vip-mac-icon { font-size: 1.5rem; flex-shrink: 0; }
.vip-mac-info strong { display: block; color: #d4af37; font-size: 0.85rem; margin-bottom: 6px; }
.vip-mac-info p { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.6; margin: 0; }


/* ========== VIP PLANS (PLAYER PAGE) ========== */
.vip-player-plans { position: sticky; top: 100px; }
.vip-plans-header { margin-bottom: 24px; }
.vip-plans-header h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.vip-plans-header p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.vip-plan-card {
  position: relative;
  background: linear-gradient(180deg, #1a1a26 0%, #13131c 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.vip-plan-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.vip-plan-gold {
  background: linear-gradient(180deg, #1f1a0e 0%, #15120a 100%);
  border-color: rgba(212,175,55,0.35);
}
.vip-plan-gold:hover {
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 16px 40px rgba(212,175,55,0.15);
}
.vip-plan-ribbon {
  position: absolute; top: 14px; right: -32px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #0a0a0f;
  padding: 5px 36px;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 1px;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}
.vip-plan-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.vip-plan-name { display: flex; align-items: center; gap: 12px; }
.vip-plan-icon { font-size: 1.5rem; }
.vip-plan-name h4 { font-size: 1rem; font-weight: 700; color: #fff; }
.vip-plan-price-box { text-align: right; }
.vip-plan-amount {
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, #d4af37 0%, #f5e6a8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vip-plan-period { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.vip-plan-perks {
  margin-bottom: 24px; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vip-perk {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
}
.vip-perk span { color: #22c55e; font-weight: 700; font-size: 0.8rem; }
.vip-perk-gold span { color: #d4af37; }

.vip-plan-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: all 0.3s ease;
}
.vip-plan-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,55,0.3);
}
.vip-plan-btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #0a0a0f; border-color: transparent;
  box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}
.vip-plan-btn-gold:hover {
  background: linear-gradient(135deg, #f5e6a8 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.4);
}

.vip-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.vip-trust-badge {
  padding: 8px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 600;
}


/* ========== ORDER PAGE ========== */
.order-section { padding: 60px 0; }
.order-box {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(180deg, #1a1a26 0%, #13131c 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; overflow: hidden;
}
.order-summary {
  background: rgba(212,175,55,0.05);
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.order-summary h2 { font-size: 1.2rem; margin-bottom: 12px; color: #fff; }
.summary-table { width: 100%; font-size: 0.9rem; }
.summary-table th { text-align: left; padding: 6px 0; color: rgba(255,255,255,0.5); font-weight: 500; width: 100px; }
.summary-table td { padding: 6px 0; color: #fff; }
.order-form-wrap { padding: 32px; }
.order-form-wrap h2 { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.form-note { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: rgba(255,255,255,0.8); }
.req { color: #ef4444; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; font-size: 0.9rem; font-family: inherit;
  color: #fff; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.order-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: all 0.2s ease; text-align: center; justify-content: center; }
.btn-primary { background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%); color: #0a0a0f; }
.btn-primary:hover { background: linear-gradient(135deg, #f5e6a8 0%, #d4af37 100%); }
.btn-full { width: 100%; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1fb855; }
.btn-telegram { background: #0088cc; color: #fff; }
.btn-telegram:hover { background: #006daa; }

/* ========== TERMS PAGE ========== */
.terms-section { padding: 60px 0; }
.terms-content { max-width: 760px; margin: 0 auto; }
.terms-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 32px; color: #fff; }
.terms-content h2 { font-size: 1.2rem; margin: 28px 0 12px; color: #d4af37; }
.terms-content p { color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.terms-content ul { margin: 12px 0; padding-left: 20px; }
.terms-content ul li { padding: 4px 0; color: rgba(255,255,255,0.6); list-style: disc; }
.disclaimer-box {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px; padding: 20px; margin: 16px 0;
}
.disclaimer-box p { color: #d4af37; margin-bottom: 8px; }
.disclaimer-box p:last-child { margin-bottom: 0; }
.terms-updated { margin-top: 32px; color: rgba(255,255,255,0.3); font-size: 0.8rem; }


/* ========== FOOTER ========== */
.site-footer {
  background: #050507; color: rgba(255,255,255,0.5);
  padding: 60px 0 0;
  border-top: 1px solid rgba(212,175,55,0.1);
}
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.footer-col h4 { color: #d4af37; font-size: 1rem; margin-bottom: 16px; }
.footer-col p { font-size: 0.85rem; line-height: 1.7; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #d4af37; }
.footer-bottom {
  margin-top: 40px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center; font-size: 0.8rem;
}
.disclaimer-line { margin-top: 6px; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 200;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: #d4af37; border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.menu-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.menu-active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.menu-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   ==========  FULL RESPONSIVE  ===============
   ============================================ */

/* Tablet (max 992px) */
@media (max-width: 992px) {
  .vip-headline { font-size: 3rem; }
  .vip-section-head h2 { font-size: 2rem; }
  .vip-player-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .vip-card { padding: 24px 20px; }
  .vip-player-plans { position: static; }
  .vip-about-card { padding: 32px; }
  .vip-cta-content h2 { font-size: 1.8rem; }
  .vip-cta-box { padding: 48px 32px; }
  .vip-player-hero-text h1 { font-size: 2.2rem; }
  .vip-card-featured { transform: none; }
  .vip-card-featured:hover { transform: translateY(-6px); }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  /* Mobile Menu */
  .mobile-menu-btn { display: flex; }
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid rgba(212,175,55,0.15);
  }
  .main-nav.nav-open { display: flex; }
  .main-nav a {
    padding: 14px 16px; font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: block; width: 100%;
  }
  .main-nav a:last-child { border-bottom: none; }
  .btn-nav { text-align: center; margin-top: 8px; border-radius: 10px; }
  /* Header */
  .header-inner { padding: 12px 16px; }
  .main-nav { gap: 10px; }
  .main-nav a { font-size: 0.75rem; }
  .btn-nav { padding: 6px 12px; font-size: 0.75rem; }
  .logo { font-size: 1rem; gap: 8px; }
  .logo-mark { width: 28px; height: 28px; font-size: 0.75rem; }

  /* Hero */
  .vip-hero { padding: 70px 0 50px; min-height: auto; }
  .vip-headline { font-size: 2.2rem; letter-spacing: -1px; }
  .vip-sub { font-size: 0.95rem; margin-bottom: 28px; }
  .vip-tag { font-size: 0.65rem; padding: 6px 14px; margin-bottom: 20px; }
  .vip-cta { margin-bottom: 40px; gap: 12px; }
  .vip-btn { padding: 12px 24px; font-size: 0.85rem; }
  .vip-stats { gap: 0; padding: 16px 12px; flex-direction: row; flex-wrap: nowrap; justify-content: space-around; width: 100%; }
  .vip-stat-num { font-size: 1.3rem; }
  .vip-stat-label { font-size: 0.6rem; }
  .vip-stat-divider { width: 1px; height: 28px; }

  /* Player Grid */
  .vip-players { padding: 60px 0; }
  .vip-player-grid { grid-template-columns: 1fr; gap: 16px; }
  .vip-card { padding: 22px 20px; border-radius: 16px; }
  .vip-card-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 12px; }
  .vip-card-icon span { font-size: 1.5rem; }
  .vip-card-title { font-size: 1.1rem; }
  .vip-card-tagline { font-size: 0.75rem; margin-bottom: 12px; }
  .vip-price-label { font-size: 0.75rem; }
  .vip-price-amount { font-size: 1rem; }
  .vip-card-btn { padding: 10px 16px; font-size: 0.8rem; }
  .vip-section-head { margin-bottom: 40px; }
  .vip-section-head h2 { font-size: 1.7rem; }
  .vip-section-head p { font-size: 0.9rem; }

  /* Features */
  .vip-features { padding: 50px 0; }
  .vip-feature-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .vip-feature { padding: 16px; }
  .vip-feature-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .vip-feature h4 { font-size: 0.9rem; }
  .vip-feature p { font-size: 0.8rem; }

  /* Steps */
  .vip-process { padding: 60px 0; }
  .vip-steps { flex-direction: column; align-items: center; }
  .vip-step { max-width: 100%; min-width: auto; width: 100%; padding: 24px; }
  .vip-step-arrow { transform: rotate(90deg); font-size: 1.2rem; }
  .vip-step-num { font-size: 2rem; }

  /* CTA */
  .vip-cta-section { padding: 50px 0 80px; }
  .vip-cta-box { padding: 36px 20px; border-radius: 20px; }
  .vip-cta-content h2 { font-size: 1.5rem; }
  .vip-cta-content p { font-size: 0.9rem; }
  .vip-cta-buttons { flex-direction: column; gap: 12px; }
  .vip-cta-buttons .vip-btn { width: 100%; justify-content: center; }

  /* Player Detail Page */
  .vip-player-hero { padding: 80px 0 50px; }
  .vip-player-hero-inner { flex-direction: column; text-align: center; gap: 20px; }
  .vip-player-icon-lg { width: 80px; height: 80px; border-radius: 18px; }
  .vip-player-icon-lg span { font-size: 2.2rem; }
  .vip-player-hero-text h1 { font-size: 1.8rem; }
  .vip-player-hero-text p { font-size: 0.95rem; }
  .vip-player-content { padding: 50px 0 80px; }
  .vip-player-detail-grid { grid-template-columns: 1fr; }
  .vip-about-card { padding: 24px; border-radius: 18px; }
  .vip-about-card h2 { font-size: 1.3rem; }
  .vip-about-desc { font-size: 0.9rem; margin-bottom: 24px; }
  .vip-feature-item { padding: 10px 0; gap: 12px; }
  .vip-feature-check { width: 24px; height: 24px; }
  .vip-mac-info { flex-direction: column; gap: 12px; padding: 16px; }

  /* Plans */
  .vip-plans-header h2 { font-size: 1.3rem; }
  .vip-plan-card { padding: 22px; border-radius: 16px; }
  .vip-plan-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vip-plan-price-box { text-align: left; }
  .vip-plan-amount { font-size: 1.6rem; }
  .vip-plan-details-card { padding: 22px; }
  .vip-plan-price-big { font-size: 2.2rem; }

  /* Order Page */
  .vip-order-hero { height: 140px; }
  .vip-order-section { margin-top: -70px; padding-bottom: 80px; }
  .vip-order-box { border-radius: 20px; margin: 0 4px; }
  .vip-order-summary { padding: 24px 20px; }
  .vip-order-summary-inner { flex-direction: column; text-align: center; gap: 16px; }
  .vip-order-player-icon { width: 60px; height: 60px; }
  .vip-order-info h2 { font-size: 1.3rem; }
  .vip-order-meta { justify-content: center; gap: 16px; }
  .vip-order-form-wrap { padding: 24px 20px; }
  .vip-order-form-header h2 { font-size: 1.1rem; }
  .vip-form-group input, .vip-form-group textarea { padding: 12px 14px; font-size: 0.85rem; }
  .vip-btn-full { padding: 14px; font-size: 0.9rem; }
  .vip-order-trust { gap: 8px; }
  .vip-order-trust-item { font-size: 0.7rem; }

  /* Terms */
  .terms-section { padding: 40px 0; }
  .terms-content h1 { font-size: 1.5rem; margin-bottom: 24px; }
  .terms-content h2 { font-size: 1.05rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-col ul { display: flex; flex-direction: column; align-items: center; }
  .site-footer { padding: 40px 0 0; }

  /* Dropdown */
  .vip-plan-dropdown select { padding: 14px 44px 14px 16px; font-size: 0.9rem; }
}

/* Small Mobile (max 400px) */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .vip-headline { font-size: 1.7rem; }
  .vip-sub { font-size: 0.85rem; }
  .vip-stats { padding: 14px 16px; gap: 14px; flex-direction: row; flex-wrap: nowrap; justify-content: space-around; width: 100%; }
  .vip-stat-divider { width: 1px; height: 28px; }
  .vip-stat-num { font-size: 1.2rem; }
  .vip-stat-label { font-size: 0.6rem; }
  .vip-card { padding: 22px 18px; }
  .vip-card-title { font-size: 1.15rem; }
  .vip-card-icon { width: 56px; height: 56px; }
  .vip-feature-grid { grid-template-columns: 1fr; }
  .vip-cta-box { padding: 28px 16px; }
  .vip-cta-content h2 { font-size: 1.3rem; }
  .vip-player-hero-text h1 { font-size: 1.5rem; }
  .vip-about-card { padding: 18px; }
  .vip-plan-card { padding: 18px; }
  .vip-plan-amount { font-size: 1.4rem; }
  .vip-plan-price-big { font-size: 1.8rem; }
  .vip-order-form-wrap { padding: 18px 14px; }
  .vip-order-summary { padding: 18px 14px; }
  .main-nav { gap: 8px; }
  .btn-nav { padding: 8px 14px; }
}


/* ============================================
   ==========  VIP ORDER PAGE  ================
   ============================================ */
.vip-order-hero {
  position: relative;
  height: 200px;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0f 0%, #13131c 100%);
  overflow: hidden;
}

.vip-order-section {
  padding: 0 0 120px;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.vip-order-box {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1a26 0%, #13131c 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

/* Order Summary */
.vip-order-summary {
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(124,58,237,0.04) 100%);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.vip-order-summary-inner {
  display: flex; align-items: center; gap: 24px;
}
.vip-order-player-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(124,58,237,0.1) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.vip-order-player-icon img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 16px;
}
.vip-order-player-icon span { font-size: 2rem; }

.vip-order-info { flex: 1; }
.vip-order-info .vip-eyebrow { margin-bottom: 8px; font-size: 0.65rem; }
.vip-order-info h2 {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.vip-order-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.vip-order-meta-item { display: flex; flex-direction: column; gap: 2px; }
.vip-order-meta-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 1px;
}
.vip-order-meta-value {
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9);
}
.vip-order-price {
  font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(135deg, #d4af37 0%, #f5e6a8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Order Form */
.vip-order-form-wrap { padding: 36px; }
.vip-order-form-header { margin-bottom: 28px; }
.vip-order-form-header h2 {
  font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 8px;
}
.vip-order-form-header p {
  color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6;
}

.vip-form-group { margin-bottom: 22px; }
.vip-form-group label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.85rem; margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}
.vip-form-label-icon { font-size: 1rem; }
.vip-form-group input,
.vip-form-group textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 0.9rem; font-family: inherit;
  color: #fff;
  transition: all 0.3s ease;
}
.vip-form-group input:focus,
.vip-form-group textarea:focus {
  outline: none;
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.04);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}
.vip-form-group input::placeholder,
.vip-form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.vip-order-divider {
  height: 1px; margin: 28px 0;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}

.vip-order-instruction {
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  text-align: center; margin-bottom: 16px;
}

.vip-order-buttons {
  display: flex; flex-direction: column; gap: 12px;
}
.vip-btn-full { width: 100%; justify-content: center; padding: 16px; border-radius: 14px; font-size: 1rem; }

.vip-order-trust {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.vip-order-trust-item {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  font-weight: 600; letter-spacing: 0.5px;
}

/* Responsive Order */
@media (max-width: 600px) {
  .vip-order-summary-inner { flex-direction: column; text-align: center; }
  .vip-order-meta { justify-content: center; }
  .vip-order-form-wrap { padding: 24px; }
  .vip-order-summary { padding: 24px; }
}


/* ============================================
   ========  VIP PLAN DROPDOWN  ===============
   ============================================ */
.vip-plan-dropdown-wrap { margin-bottom: 24px; }
.vip-dropdown-label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: #d4af37; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 10px;
}
.vip-plan-dropdown {
  position: relative;
}
.vip-plan-dropdown select {
  width: 100%;
  padding: 16px 50px 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 14px;
  font-size: 1rem; font-weight: 600; font-family: inherit;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.vip-plan-dropdown select:focus {
  outline: none;
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
  background: rgba(212,175,55,0.06);
}
.vip-plan-dropdown select option {
  background: #1a1a26; color: #fff; padding: 12px;
}
.vip-dropdown-arrow {
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  color: #d4af37; pointer-events: none;
}

/* Plan Details Card */
.vip-plan-details { margin-bottom: 24px; }
.vip-plan-details-card {
  background: linear-gradient(180deg, #1f1a0e 0%, #15120a 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(212,175,55,0.08);
}

.vip-plan-details-top {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.vip-plan-details-icon { font-size: 2.2rem; }
.vip-plan-details-tag {
  display: inline-block;
  padding: 3px 10px; border-radius: 6px;
  background: rgba(212,175,55,0.15);
  color: #d4af37;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 4px;
}
.vip-plan-details-top h3 {
  font-size: 1.2rem; font-weight: 700; color: #fff;
}

.vip-plan-details-price-row {
  padding: 20px 0;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  margin-bottom: 20px;
}
.vip-plan-details-price { display: flex; align-items: baseline; gap: 8px; }
.vip-plan-price-big {
  font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, #d4af37 0%, #f5e6a8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vip-plan-price-period {
  font-size: 0.9rem; color: rgba(255,255,255,0.4);
}

.vip-plan-details-perks { margin-bottom: 24px; }
.vip-plan-details-perks .vip-perk {
  padding: 8px 0;
}

/* Animation */
.vip-plan-animate {
  animation: planSlideIn 0.4s ease forwards;
}
@keyframes planSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
