/* =============================================
   AAA POP A PRIZE — Professional CSS
   Fonts: Bebas Neue (display), Barlow Condensed (headings), Barlow (body)
   Palette: Gold #C9973A, Deep Gold #F0C060, Black #000, Off-white #F5F0E8
============================================= */

:root {
  --gold: #C9973A;
  --gold-light: #F0C060;
  --gold-dim: rgba(201,151,58,.15);
  --gold-border: rgba(201,151,58,.4);
  --red: #D93030;
  --black: #000;
  --dark: #0A0A0A;
  --card: #0D0D0D;
  --text-muted: #888;
  --text-body: #C8C0B0;
  --white: #F5F0E8;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --transition: .25s ease;
  --section-pad: 90px 7%;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; }

section { padding: var(--section-pad); }


/* =============================================
   HEADER
============================================= */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 0 7%;
  height: 70px;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background var(--transition);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .08em;
  color: var(--white);
}

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

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .1em;
  color: var(--text-body);
  transition: color var(--transition);
  text-transform: uppercase;
}

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

.nav-btn {
  background: var(--gold);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  color: var(--black) !important;
  font-weight: 700;
  font-size: .8rem;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 900;
}

.mobile-overlay.active { display: block; }


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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.586) 0%,
    rgba(0, 0, 0, 0.316) 50%,
    rgba(0, 0, 0, 0.589) 100%
  );

}


/* subtle grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
  animation: fadeUp .9s ease both;
}

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

.hero-logo {
  width: 200px;
  margin: 0 auto 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  letter-spacing: .04em;
  line-height: .95;
  color: var(--white);
}

.hero h1 span { color: var(--gold); }

.hero h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold);
  font-size: clamp(.75rem, 1.8vw, 1rem);
  letter-spacing: .25em;
  margin-top: 12px;
}

.hero p {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-body);
  margin: 28px auto;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-transform: uppercase;
}

.gold-btn {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201,151,58,.35);
}

.gold-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(240,192,96,.4);
}

.outline-btn {
  border: 2px solid var(--gold-border);
  color: var(--gold-light);
}

.outline-btn:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.scroll-box {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  opacity: .7;
  font-family: var(--font-heading);
  font-size: .7rem;
  letter-spacing: .2em;
  animation: bounce 2s ease infinite;
}

.scroll-box i { font-size: 1.3rem; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}


/* =============================================
   SECTION COMMON
============================================= */
.section-badge {
  width: fit-content;
  margin: 0 auto 28px;
  border: 1px solid var(--gold-border);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  color: var(--gold);
  display: flex;
  gap: 9px;
  align-items: center;
  background: var(--gold-dim);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.left-badge { margin: 0 0 28px; }

.section-heading-group { text-align: center; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: .04em;
  line-height: 1.05;
}

.section-text {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: .95rem;
  margin-top: 10px;
  margin-bottom: 56px;
  letter-spacing: .02em;
}


/* =============================================
   COUNTDOWN
============================================= */
.countdown-section {
  text-align: center;
  background: var(--dark);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.countdown {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.time-box {
  border: 1px solid var(--gold-border);
  padding: 28px 36px;
  min-width: 130px;
  background: var(--card);
  position: relative;
}

.time-box:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.time-box:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

.time-box h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: .04em;
}

.time-box span {
  display: block;
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--text-muted);
  margin-top: 6px;
}

.colon {
  color: var(--gold-border);
  font-size: 2.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  padding: 0 4px;
  align-self: center;
}

.live-time {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .15em;
  color: var(--text-body);
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
}

.live-dot {
  color: var(--red);
  font-size: .55rem;
  animation: pulse 1.4s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* HOST */
.host-container {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.host-img {
  width: 260px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold-border);
  object-fit: cover;
}

.host-content p {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.host-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--white);
}


/* =============================================
   HOW TO PLAY
============================================= */
.how-section { text-align: center; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.step-card:hover::before { opacity: 1; }

.step-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--gold-border);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  letter-spacing: .04em;
}

.step-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-title span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.step-card img {
  height: 180px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto 24px;
}

.step-card p {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}


/* =============================================
   PRIZES
============================================= */
.prizes-section { text-align: center; }

.grand-prize {
  max-width: 520px;
  margin: 0 auto 60px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 52px 28px 40px;
  position: relative;
  background: linear-gradient(145deg, #0D0D0D 60%, rgba(201,151,58,.07) 100%);
  box-shadow: 0 0 60px rgba(201,151,58,.08);
}

.grand-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .2em;
  white-space: nowrap;
}

.grand-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(240,192,96,.25);
}

.grand-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .3em;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Grid */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Base prize card */
.prize-card {
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px 24px;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.prize-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 65%);
  opacity: 0;
  transition: opacity var(--transition);
}

.prize-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201,151,58,.12);
}

.prize-card:hover::before { opacity: 1; }

/* Icon variant */
.prize-card--icon .prize-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: rgba(201,151,58,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
  z-index: 1;
}

.prize-card--icon .prize-icon-wrap i {
  font-size: 1.6rem;
  color: var(--gold);
}

.prize-card:hover .prize-icon-wrap {
  border-color: var(--gold);
  background: rgba(201,151,58,.15);
}

/* Image variant */
.prize-card--img img {
  height: 110px;
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* Shared text */
.prize-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.prize-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold-dim);
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .prizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .prizes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .prize-card {
    padding: 22px 14px 18px;
  }
  .prize-card--icon .prize-icon-wrap {
    width: 52px;
    height: 52px;
  }
  .prize-card--icon .prize-icon-wrap i {
    font-size: 1.3rem;
  }
  .prize-card--img img {
    height: 80px;
  }
  .prize-name {
    font-size: 1rem;
  }
}


/* =============================================
   WINNERS
============================================= */
.winners-section { text-align: center; }

.winners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 50px;
}

.winner-card {
  width: 240px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: var(--card);
  transition: border-color var(--transition), transform var(--transition);
  text-align: center;
}

.winner-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.winner-round {
  display: inline-block;
  background: var(--red);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .15em;
  margin-bottom: 20px;
}

.winner-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--gold-border);
}

.winner-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 8px;
}

.prize-won {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  letter-spacing: .06em;
}


/* =============================================
   SMS SECTION
============================================= */
.sms-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: var(--dark);
}

.sms-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .06;
  pointer-events: none;
}

.sms-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 280px;
}

.sms-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.sms-to {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .3em;
  color: var(--text-muted);
  margin: 16px 0 4px;
}

.sms-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--gold-light);
  letter-spacing: .04em;
  line-height: 1;
  text-shadow: 0 0 60px rgba(240,192,96,.2);
}

.sms-cost {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 18px;
  letter-spacing: .04em;
}

.sms-cost span { color: var(--red); font-weight: 700; }

.phone-image {
  position: relative;
  z-index: 2;
  width: min(380px, 100%);
  flex-shrink: 0;
}


/* =============================================
   CONNECT / SOCIALS
============================================= */
.connect-section { text-align: center; }

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.socials a {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 1.4rem;
  border: 1px solid var(--gold-border);
  transition: transform var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.socials a:hover {
  transform: translateY(-6px);
  color: var(--gold-light);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,151,58,.2);
}


/* =============================================
   FOOTER
============================================= */
footer {
  border-top: 1px solid var(--gold-border);
  text-align: center;
  padding: 52px 7%;
  background: #000;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 10px;
}

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

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .22em;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: .75rem;
  color: #444;
  letter-spacing: .05em;
}


/* =============================================
   RESPONSIVE
============================================= */

/* Tablet */
@media (max-width: 900px) {

  :root { --section-pad: 72px 6%; }

  .header { padding: 0 5%; }

  nav {
    position: fixed;
    top: 0; right: -280px;
    width: 280px;
    height: 100%;
    background: #0A0A0A;
    border-left: 1px solid var(--gold-border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    transition: right .35s ease;
    z-index: 1000;
  }

  nav.open { right: 0; }

  nav a {
    font-size: 1.1rem;
    color: var(--white);
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 22px;
  }

  .hamburger { display: flex; }

  .time-box { min-width: 100px; padding: 20px 18px; }
  .time-box h3 { font-size: 2.8rem; }
  .colon { font-size: 1.8rem; padding: 0 2px; }

  .host-container { gap: 32px; }
  .host-img { width: 200px; }

  .phone-image { width: 100%; }

  .sms-section { justify-content: center; text-align: center; }
  .left-badge { margin: 0 auto 28px; }
}

/* Mobile */
@media (max-width: 560px) {

  :root { --section-pad: 60px 5%; }

  .hero-logo { width: 140px; }

  .countdown { gap: 0; }

  .time-box {
    min-width: 72px;
    padding: 16px 10px;
  }

  .time-box h3 { font-size: 2.2rem; }
  .time-box span { font-size: .55rem; }

  .colon { display: none; }

  .host-img { width: 160px; }
  .host-content h1 { font-size: 3rem; }

  .step-card { padding: 28px 20px; }
  .step-number { font-size: 3rem; }
  .step-card img { height: 140px; }

  .grand-prize { padding: 44px 20px 32px; }

  .prize-card { height: 120px; }

  .socials a { width: 54px; height: 54px; font-size: 1.25rem; }

  .footer-links { gap: 18px; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}