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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* URGENCY BAR */
.urgency-bar {
  background: linear-gradient(90deg, #00c853, #00e676);
  color: #000;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
}

.urgency-bar span {
  background: #000;
  color: #00e676;
  padding: 1px 6px;
  border-radius: 4px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(0,230,118,0.15);
}

.logo {
  height: 100px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?w=1600&q=80') center/cover no-repeat;
  padding-top: 140px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.93) 0%, rgba(0,20,0,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
}

.live-badge {
  display: inline-block;
  background: rgba(0,230,118,0.12);
  border: 1px solid rgba(0,230,118,0.4);
  color: #00e676;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 span {
  color: #00e676;
}

.hero-content > p {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #00e676, #00c853);
  color: #000;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 52px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(0,230,118,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,230,118,0.65);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
  margin-top: 14px;
}

.btn-secondary:hover {
  border-color: #fff;
  color: #fff;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0,230,118,0.4); }
  50% { box-shadow: 0 0 60px rgba(0,230,118,0.8); }
}

.badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.25);
  color: #00e676;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.members-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.counter-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #00e676;
}

.counter-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: #00e676;
}

.counter-label {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.counter-divider {
  width: 1px;
  height: 50px;
  background: #222;
}

/* SECTION TAG */
.section-tag {
  text-align: center;
  color: #00e676;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* HOW IT WORKS */
.how {
  padding: 90px 0;
  background: #0d0d0d;
}

.how h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 52px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  background: #161616;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  transition: border-color 0.2s;
}

.step:hover {
  border-color: #00e676;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00e676;
  opacity: 0.3;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.8rem;
  color: #00e676;
  opacity: 0.4;
}

/* BENEFITS */
.benefits {
  padding: 90px 0;
  background: #0a0a0a;
}

.benefits h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 52px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: #00e676;
  transform: translateY(-4px);
}

.icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00e676;
}

.card p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.7;
}

/* CASINO */
.casino {
  padding: 90px 0;
  background: #0d0d0d;
}

.casino h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.casino-sub {
  text-align: center;
  color: #888;
  font-size: 1rem;
  margin-bottom: 52px;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.casino-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.casino-card:hover {
  border-color: #ffd700;
  transform: translateY(-4px);
}

.casino-card.hot {
  border-color: rgba(255, 100, 0, 0.4);
  background: linear-gradient(135deg, #111, #1a0d00);
}

.casino-card.hot:hover {
  border-color: #ff6400;
}

.casino-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff6400, #ff9500);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.casino-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.casino-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}

.casino-aka {
  font-size: 0.8rem;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 12px;
}

.casino-card p:not(.casino-aka) {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}

.casino-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.casino-stats span {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  color: #ffd700;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

/* RESULTS */
.results {
  padding: 90px 0;
  background: #0d0d0d;
}

.results h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 52px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.result-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s;
}

.result-card:hover {
  transform: translateY(-4px);
}

.result-card.green {
  border-color: rgba(0,230,118,0.2);
}

.result-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-value {
  font-size: 2rem;
  font-weight: 900;
  color: #00e676;
}

.result-sub {
  font-size: 0.8rem;
  color: #555;
}

/* PROOF */
.proof {
  padding: 90px 0;
  background: #0a0a0a;
}

.proof h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 52px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.testimonial:hover {
  border-color: rgba(0,230,118,0.3);
}

.stars {
  font-size: 1rem;
  margin-bottom: 14px;
}

.testimonial p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e676, #00c853);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 0.9rem;
}

.t-author span {
  font-size: 0.8rem;
  color: #666;
}

/* FAQ */
.faq {
  padding: 90px 0;
  background: #0d0d0d;
}

.faq h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 52px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #00e676;
}

.faq-question span {
  font-size: 1.4rem;
  color: #00e676;
  transition: transform 0.3s;
}

.faq-question.open span {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: #888;
  line-height: 1.7;
}

.faq-answer.open {
  display: block;
}

/* CTA */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #050505, #001500);
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta h2 span {
  color: #00e676;
}

.cta > .container > p {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.timer-block {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.timer-block span {
  font-size: 2rem;
  font-weight: 900;
  color: #00e676;
}

.timer-block small {
  font-size: 0.7rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.timer-sep {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #f9a825;
}

/* FOOTER */
footer {
  background: #050505;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #111;
}

.logo-footer {
  height: 50px;
  margin-bottom: 16px;
  opacity: 0.6;
}

footer p {
  color: #444;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.footer-disclaimer {
  font-size: 0.78rem !important;
  color: #2a2a2a !important;
}

@media (max-width: 1024px) and (min-width: 769px) {

  /* TABLET */
  .cards, .casino-grid, .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    gap: 10px;
  }

  .step {
    max-width: 220px;
    padding: 28px 18px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .members-counter {
    gap: 28px;
  }

  .navbar {
    top: 38px;
  }
}

@media (max-width: 768px) {

  /* URGENCY BAR */
  .urgency-bar {
    font-size: 0.78rem;
    padding: 8px 12px;
    line-height: 1.4;
  }

  /* NAVBAR */
  .navbar {
    top: 36px;
    padding: 8px 0;
  }

  .logo {
    height: 65px;
  }

  /* HERO */
  .hero {
    padding-top: 130px;
  }

  .hero-content {
    padding: 32px 16px 48px;
  }

  .hero-content > p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 16px 28px;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }

  .badges {
    gap: 8px;
  }

  .badge {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .members-counter {
    gap: 20px;
    margin-top: 36px;
  }

  .counter-divider { display: none; }

  .counter-num {
    font-size: 1.8rem;
  }

  .counter-suffix {
    font-size: 1.5rem;
  }

  .counter-label {
    font-size: 0.75rem;
  }

  /* SECTIONS */
  .how, .benefits, .casino, .results, .proof, .faq {
    padding: 60px 0;
  }

  /* STEPS */
  .step-arrow { display: none; }

  .step {
    max-width: 100%;
    padding: 28px 20px;
  }

  /* CARDS */
  .cards, .casino-grid, .testimonials {
    grid-template-columns: 1fr;
  }

  /* RESULTS */
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .result-value {
    font-size: 1.6rem;
  }

  /* CASINO */
  .casino-badge {
    font-size: 0.68rem;
    padding: 3px 10px;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.92rem;
    padding: 16px 18px;
  }

  /* CTA */
  .cta {
    padding: 70px 0;
  }

  .timer-block {
    min-width: 60px;
    padding: 12px 14px;
  }

  .timer-block span {
    font-size: 1.6rem;
  }

  .timer-sep {
    font-size: 1.6rem;
  }
}

@media (max-width: 400px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .members-counter {
    flex-direction: column;
    gap: 16px;
  }

  .timer {
    gap: 4px;
  }

  .timer-block {
    min-width: 52px;
    padding: 10px 10px;
  }

  .timer-block span {
    font-size: 1.3rem;
  }
}
