/* ============================================
   POKERALYAN SECRETS - BLACK FRIDAY SPECIAL
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Core Palette */
  --black-deep: #0a0a0a;
  --black-card: #111111;
  --black-surface: #1a1a1a;
  --gold-primary: #d4af37;
  --gold-bright: #ffd700;
  --gold-dark: #b8960c;
  --red-hot: #ff3333;
  --red-deep: #cc0000;
  --green-success: #22c55e;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  
  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-max: 1200px;
  --container-narrow: 800px;
  
  /* Effects */
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.2);
  --red-glow: 0 0 20px rgba(255, 51, 51, 0.5);
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black-deep);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 100px,
      rgba(212, 175, 55, 0.02) 100px,
      rgba(212, 175, 55, 0.02) 101px
    );
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-bright);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.text-gold { color: var(--gold-primary); }
.text-red { color: var(--red-hot); }
.text-green { color: var(--green-success); }
.text-muted { color: var(--gray-400); }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Black Friday Banner ---------- */
.bf-banner {
  background: linear-gradient(90deg, var(--red-deep), var(--red-hot), var(--red-deep));
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.bf-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to { left: 100%; }
}

/* ---------- Hero Section ---------- */
.hero {
  padding: clamp(4rem, 12vw, 8rem) 0;
  text-align: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-hot);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: pulse-badge 2s infinite;
  box-shadow: var(--red-glow);
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Price Strike */
.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.price-old {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-500);
  text-decoration: line-through;
  position: relative;
}

.price-new {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--green-success);
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

/* ---------- Countdown Timer ---------- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.countdown__block {
  background: var(--black-card);
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-width: 80px;
  text-align: center;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-bright);
  line-height: 1;
}

.countdown__label {
  font-size: 0.7rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ---------- Scarcity Meter ---------- */
.scarcity {
  background: var(--black-card);
  border: 1px solid var(--gold-primary);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  margin: 2rem auto;
}

.scarcity__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.scarcity__claimed {
  color: var(--gold-primary);
  font-weight: 700;
}

.scarcity__bar {
  height: 12px;
  background: var(--gray-800);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.scarcity__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  border-radius: 6px;
  transition: width 1s ease-out;
  position: relative;
}

.scarcity__fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
  animation: shimmer 2s infinite;
}

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

.scarcity__remaining {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.scarcity__remaining strong {
  color: var(--gold-bright);
  font-size: 1.3rem;
}

/* ---------- CTA Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  color: var(--black-deep);
  box-shadow: var(--gold-glow);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn--large {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
}

.btn--mega {
  padding: 1.5rem 3.5rem;
  font-size: 1.4rem;
  border-radius: 12px;
  animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: var(--gold-glow); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.7), 0 0 80px rgba(212, 175, 55, 0.4); }
}

.btn--secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn--secondary:hover {
  background: var(--gold-primary);
  color: var(--black-deep);
}

.btn--red {
  background: linear-gradient(135deg, var(--red-deep), var(--red-hot));
  color: var(--white);
}

/* ---------- Card Components ---------- */
.card {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-smooth);
}

.card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card--step {
  position: relative;
  padding-left: 5rem;
}

.card--step::before {
  content: attr(data-step);
  position: absolute;
  left: 1.5rem;
  top: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  color: var(--black-deep);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card__title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.card__text {
  color: var(--gray-300);
  line-height: 1.7;
}

.card__list {
  list-style: none;
  margin-top: 1rem;
}

.card__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-300);
}

.card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-success);
  font-weight: 700;
}

/* ---------- Steps Section ---------- */
.steps {
  counter-reset: step;
}

.step {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
  pointer-events: none;
}

.step__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step__number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  color: var(--black-deep);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__title {
  font-size: 1.5rem;
  color: var(--white);
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
}

.step__subtitle {
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.step__content {
  color: var(--gray-300);
  line-height: 1.8;
}

.step__content p {
  margin-bottom: 1rem;
}

.step__cta {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 8px 8px 0;
}

.step__cta-title {
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

/* ---------- Social Proof ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.testimonial__stars {
  color: var(--gold-bright);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial__text {
  color: var(--gray-300);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black-deep);
}

.testimonial__name {
  font-weight: 600;
  color: var(--white);
}

.testimonial__role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ---------- FAQ Section ---------- */
.faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--gold-primary);
}

.faq__icon {
  font-size: 1.5rem;
  transition: transform var(--transition-smooth);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq__item.active .faq__answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq__answer p {
  color: var(--gray-300);
  line-height: 1.7;
}

/* ---------- Opt-in Form ---------- */
.form-section {
  background: linear-gradient(180deg, var(--black-surface), var(--black-deep));
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.form__header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.form__title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.form__subtitle {
  color: var(--gray-400);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.form__input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--black-deep);
  border: 2px solid var(--gray-700);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form__input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.form__input::placeholder {
  color: var(--gray-500);
}

.form__submit {
  width: 100%;
  margin-top: 1rem;
}

.form__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Thank You Page ---------- */
.thankyou {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.thankyou__icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  animation: pop-in 0.5s ease-out;
}

@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.thankyou__title {
  margin-bottom: 1rem;
}

.thankyou__subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 600px;
  margin-bottom: 2rem;
}

.thankyou__steps {
  text-align: left;
  max-width: 500px;
  margin: 2rem auto;
}

.thankyou__step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--black-card);
  border-radius: 12px;
  border-left: 4px solid var(--gold-primary);
}

.thankyou__step-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.thankyou__step-text {
  color: var(--gray-300);
}

.thankyou__step-text strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.thankyou__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.thankyou__warning {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  max-width: 500px;
}

.thankyou__warning-title {
  color: #ffc107;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black-card);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
}

.footer__text {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.footer__links {
  margin-top: 1rem;
}

.footer__links a {
  color: var(--gray-400);
  margin: 0 1rem;
  font-size: 0.85rem;
}

.footer__links a:hover {
  color: var(--gold-primary);
}

/* ---------- Utility Classes ---------- */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.pt-0 { padding-top: 0; }

.hidden { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Animations ---------- */
.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

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

.slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

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

/* Staggered animations */
.stagger > * {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0.1s; }
.stagger > *:nth-child(2) { animation-delay: 0.2s; }
.stagger > *:nth-child(3) { animation-delay: 0.3s; }
.stagger > *:nth-child(4) { animation-delay: 0.4s; }
.stagger > *:nth-child(5) { animation-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
  }
  
  .hero__badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
  
  .price-old {
    font-size: 1.8rem;
  }
  
  .price-new {
    font-size: 3rem;
  }
  
  .countdown__block {
    min-width: 65px;
    padding: 0.75rem 1rem;
  }
  
  .countdown__number {
    font-size: 2rem;
  }
  
  .btn--mega {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
  }
  
  .step {
    padding: 2rem 1.5rem;
  }
  
  .step::before {
    font-size: 5rem;
    top: -10px;
    right: -10px;
  }
  
  .form-section {
    padding: 2rem 1.5rem;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .countdown {
    gap: 0.5rem;
  }
  
  .countdown__block {
    min-width: 55px;
    padding: 0.5rem 0.75rem;
  }
  
  .price-comparison {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--black-card);
  border: 1px solid var(--gold-primary);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal__close {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal__close:hover {
  color: var(--white);
}

.modal__body {
  padding: 2rem;
  overflow-y: auto;
  color: var(--gray-300);
  line-height: 1.8;
}

.modal__body h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-transform: none;
  margin: 1.5rem 0 0.75rem;
  font-weight: 700;
}

.modal__body h3:first-child {
  margin-top: 0;
}

.modal__body p {
  margin-bottom: 1rem;
}

.modal__body ul {
  margin: 1rem 0 1rem 1.5rem;
}

.modal__body li {
  margin-bottom: 0.5rem;
}

.modal__body a {
  color: var(--gold-primary);
  text-decoration: underline;
}

.modal__body strong {
  color: var(--white);
}

.modal__updated {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Modal responsive */
@media (max-width: 768px) {
  .modal {
    max-height: 90vh;
  }
  
  .modal__header {
    padding: 1rem 1.5rem;
  }
  
  .modal__body {
    padding: 1.5rem;
  }
  
  .modal__title {
    font-size: 1.25rem;
  }
}

/* ---------- Print ---------- */
@media print {
  body::before,
  .bf-banner,
  .btn,
  .countdown,
  .modal-overlay {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card, .step {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
}

