/* === COC Gold Pass BD WordPress Theme === */
:root {
  --bg: hsl(250 20% 6%);
  --fg: hsl(220 20% 92%);
  --card: hsl(250 18% 10%);
  --muted: hsl(250 15% 15%);
  --muted-fg: hsl(220 10% 55%);
  --primary: hsl(45 100% 55%);
  --primary-fg: hsl(250 20% 6%);
  --neon-blue: hsl(195 100% 50%);
  --neon-purple: hsl(270 80% 60%);
  --neon-gold: hsl(45 100% 55%);
  --neon-green: hsl(140 80% 50%);
  --gaming-red: hsl(0 85% 55%);
  --border: hsl(260 30% 20%);
  --radius: 0.75rem;
  --glow-blue: 0 0 20px hsla(195,100%,50%,0.5), 0 0 40px hsla(195,100%,50%,0.2);
  --glow-purple: 0 0 20px hsla(270,80%,60%,0.5), 0 0 40px hsla(270,80%,60%,0.2);
  --glow-gold: 0 0 20px hsla(45,100%,55%,0.5), 0 0 40px hsla(45,100%,55%,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: 'Inter', sans-serif; line-height: 1.6; }

.font-bangla { font-family: 'Hind Siliguri', sans-serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Glow borders */
.glow-blue { box-shadow: var(--glow-blue); border: 1px solid hsla(195,100%,50%,0.4); }
.glow-purple { box-shadow: var(--glow-purple); border: 1px solid hsla(270,80%,60%,0.4); }
.glow-gold { box-shadow: var(--glow-gold); border: 1px solid hsla(45,100%,55%,0.4); }

.text-gold { color: var(--primary); }
.text-blue { color: var(--neon-blue); }
.neon-gold { text-shadow: 0 0 10px hsla(45,100%,55%,0.8), 0 0 20px hsla(45,100%,55%,0.4); }
.neon-blue { text-shadow: 0 0 10px hsla(195,100%,50%,0.8), 0 0 20px hsla(195,100%,50%,0.4); }

/* === NAVBAR === */
.cocgp-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s;
}
.cocgp-navbar.scrolled {
  background: hsla(250,20%,6%,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; color: var(--fg);
}
.nav-logo span {
  font-family: 'Russo One', sans-serif;
  font-size: 1rem; color: var(--primary); letter-spacing: 0.05em;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.75rem; font-size: 0.875rem; color: hsla(220,20%,92%,0.8);
  text-decoration: none; border-radius: 0.5rem; transition: all 0.2s;
}
.nav-link:hover { color: var(--primary); background: hsla(250,15%,15%,0.5); }
.nav-cta {
  margin-left: 0.5rem; padding: 0.5rem 1rem; font-size: 0.75rem;
  font-family: 'Russo One', sans-serif; text-transform: uppercase;
  letter-spacing: 0.05em; text-decoration: none; color: #fff;
  background: linear-gradient(135deg, hsl(140,70%,40%), hsl(140,70%,30%));
  border-radius: 9999px; transition: all 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 25px hsla(140,80%,50%,0.5); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--fg);
  margin: 5px 0; transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 56px; left: 0; right: 0; background: hsla(250,20%,6%,0.98);
    backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; text-align: left; padding: 0.75rem 1rem; }
  .nav-cta { margin: 0.5rem 0 0; text-align: center; padding: 0.75rem; }
  .nav-toggle { display: block; }
  .nav-inner { height: 56px; }
}

/* === HERO === */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding-top: 56px;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsla(250,20%,6%,0.8), hsla(250,20%,6%,0.6), var(--bg));
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 1.25rem; max-width: 640px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  background: hsla(45,100%,55%,0.1); border: 1px solid hsla(45,100%,55%,0.3);
  color: var(--primary); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Russo One', sans-serif; font-size: 2rem; line-height: 1.2; margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
.hero-sub {
  font-size: 0.875rem; color: hsla(220,20%,92%,0.7); margin-bottom: 1.5rem; max-width: 28rem; margin-left: auto; margin-right: auto;
}

/* Countdown */
.countdown-wrap {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: hsla(0,85%,55%,0.2); border: 1px solid hsla(0,85%,55%,0.4);
  border-radius: var(--radius); padding: 0.625rem 1rem; margin-bottom: 1.5rem;
}
.countdown-label {
  font-size: 0.8rem; font-weight: 600; color: var(--gaming-red);
  animation: glow-pulse 2s infinite;
}
.countdown-timer { display: flex; align-items: center; gap: 0.25rem; }
.cd-unit {
  background: hsla(250,20%,6%,0.8); border-radius: 0.375rem;
  padding: 0.25rem 0.5rem; min-width: 36px; text-align: center;
}
.cd-num {
  font-family: 'Orbitron', sans-serif; font-size: 0.9rem; color: var(--primary); display: block; line-height: 1;
}
.cd-label { font-size: 0.5rem; color: var(--muted-fg); display: block; margin-top: 2px; }
.cd-sep { color: var(--gaming-red); font-family: 'Russo One', sans-serif; font-size: 0.875rem; }

.hero-buttons {
  display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Russo One', sans-serif; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 1rem 2rem; border-radius: var(--radius);
  background: linear-gradient(135deg, hsl(140,70%,40%), hsl(140,70%,30%));
  color: #fff; text-decoration: none; transition: all 0.3s; font-size: 1rem;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px hsla(140,80%,50%,0.5), 0 8px 25px rgba(0,0,0,0.4);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Russo One', sans-serif; letter-spacing: 0.05em;
  padding: 1rem 2rem; border-radius: var(--radius);
  border: 1px solid var(--border); color: hsla(220,20%,92%,0.8);
  text-decoration: none; transition: all 0.3s; font-size: 1rem;
}
.btn-outline:hover { color: var(--primary); border-color: hsla(45,100%,55%,0.5); }

.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; font-size: 0.75rem; color: var(--muted-fg);
}
.hero-badges span {
  display: flex; align-items: center; gap: 0.375rem;
  background: hsla(250,15%,15%,0.4); padding: 0.375rem 0.75rem; border-radius: 9999px;
}

/* === SECTIONS === */
.section { padding: 4rem 1rem; }
@media (min-width: 768px) { .section { padding: 6rem 1rem; } }
.section-alt { background: hsla(250,15%,15%,0.2); }
.section-title {
  font-family: 'Russo One', sans-serif; font-size: 1.5rem; text-align: center; margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--neon-gold), var(--neon-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-sub {
  text-align: center; color: var(--muted-fg); margin-bottom: 2.5rem; font-size: 0.875rem;
}

/* === PRICING === */
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 1100px; margin: 0 auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.pricing-card {
  background: linear-gradient(145deg, hsl(250,18%,12%), hsl(250,18%,8%));
  border-radius: var(--radius); padding: 1.5rem; position: relative; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.card-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  padding: 0.25rem 1rem; border-radius: 9999px; font-size: 0.75rem;
  font-family: 'Russo One', sans-serif; letter-spacing: 0.05em;
  background: var(--primary); color: var(--primary-fg);
}
.card-title {
  font-family: 'Russo One', sans-serif; font-size: 1.125rem; text-align: center;
  margin-bottom: 1.25rem; padding-top: 0.5rem;
}
.card-items { display: flex; flex-direction: column; gap: 0.5rem; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.75rem; border-radius: 0.5rem; background: hsla(250,15%,15%,0.4); transition: all 0.2s;
}
.price-row.popular {
  background: hsla(45,100%,55%,0.1); border: 1px solid hsla(45,100%,55%,0.2);
}
.price-label { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.price-emoji { font-size: 1.125rem; flex-shrink: 0; }
.price-label span:last-child { font-size: 0.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.price-action { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.price-amount {
  font-family: 'Russo One', sans-serif; font-size: 0.8rem; color: var(--primary);
}
.btn-buy {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Russo One', sans-serif; font-weight: 700; font-size: 0.65rem;
  letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none;
  padding: 0.375rem 0.625rem; border-radius: 0.375rem;
  background: linear-gradient(135deg, var(--gaming-red), hsl(0,85%,45%));
  color: #fff; transition: all 0.3s; white-space: nowrap;
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px hsla(0,85%,55%,0.6), 0 8px 25px rgba(0,0,0,0.4);
}

/* === FEATURES === */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; max-width: 900px; margin: 0 auto;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(5, 1fr); } }
.feature-card {
  background: linear-gradient(145deg, hsl(250,18%,12%), hsl(250,18%,8%));
  border-radius: var(--radius); padding: 1rem 1.25rem; text-align: center; transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.feature-title { font-family: 'Russo One', sans-serif; font-size: 0.75rem; color: var(--primary); margin-bottom: 0.25rem; }
.feature-desc { font-size: 0.7rem; color: var(--muted-fg); line-height: 1.4; }

/* === STEPS === */
.steps-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 700px; margin: 0 auto;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.step-item { text-align: center; }
.step-icon {
  width: 3.5rem; height: 3.5rem; margin: 0 auto 0.75rem;
  border-radius: 50%; background: hsla(250,15%,15%,0.6);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.step-num { font-size: 0.625rem; color: var(--neon-blue); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.25rem; }
.step-title { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin-bottom: 0.125rem; }
.step-desc { font-size: 0.7rem; color: var(--muted-fg); }

/* === REVIEWS MARQUEE === */
.marquee-container { overflow: hidden; }
.marquee-row { overflow: hidden; padding: 0.375rem 0; }
.marquee-track { display: flex; gap: 0.75rem; width: max-content; will-change: transform; }
.review-card {
  display: inline-flex; flex-direction: column; min-width: 220px; max-width: 250px;
  padding: 0.875rem; border-radius: var(--radius); background: var(--card);
  border: 1px solid hsla(260,30%,20%,0.5); flex-shrink: 0; transition: border-color 0.2s;
}
.review-card:hover { border-color: hsla(45,100%,55%,0.3); }
.review-stars { font-size: 0.75rem; margin-bottom: 0.375rem; }
.review-text { font-size: 0.75rem; color: hsla(220,20%,92%,0.8); margin-bottom: 0.5rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.review-author { margin-top: auto; border-top: 1px solid var(--border); padding-top: 0.5rem; }
.review-name { font-size: 0.7rem; color: var(--primary); font-weight: 600; }
.review-loc { font-size: 0.625rem; color: var(--muted-fg); }

/* === FOOTER === */
.site-footer {
  padding: 2.5rem 1rem; border-top: 1px solid var(--border); background: hsla(250,15%,15%,0.1);
}
.footer-inner { text-align: center; }
.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Russo One', sans-serif; font-size: 1.25rem; color: var(--primary); margin-bottom: 1rem;
}
.footer-contact { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.footer-btn { font-size: 0.875rem; margin-bottom: 1.5rem; }
.footer-disclaimer { font-size: 0.7rem; color: var(--muted-fg); margin-top: 1rem; }

/* === FLOATING WHATSAPP === */
.floating-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, hsl(140,70%,40%), hsl(140,70%,30%));
  color: #fff; text-decoration: none; transition: all 0.3s;
  box-shadow: 0 0 20px hsla(140,80%,50%,0.5);
  animation: pulse-glow 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px hsla(140,80%,50%,0.7);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsla(140,80%,50%,0.5); }
  50% { box-shadow: 0 0 35px hsla(140,80%,50%,0.8); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
