:root {
  --gold: #DAA520;
  --gold-dark: #B8960C;
  --gold-light: #E6B800;
  --gold-glow: rgba(218, 165, 32, 0.25);
  --bg-dark: #1E1D12;
  --bg-dark-alt: #2D2B1A;
  --bg-cream: #F5F0E1;
  --bg-white: #FAFAF5;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --text-muted: #6B6B5E;
  --green: #2E7D32;
  --green-light: #43A047;
  --border: rgba(218, 165, 32, 0.2);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 4px 24px rgba(218, 165, 32, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 2px solid var(--gold);
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header__logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list {
  display: flex;
  gap: 28px;
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__security {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.header__security i {
  font-size: 1rem;
  color: var(--green-light);
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(218, 165, 32, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn--dark {
  background: var(--bg-dark);
  color: var(--gold);
}

.btn--dark:hover {
  background: var(--bg-dark-alt);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__banner {
  width: 100%;
  display: block;
  filter: brightness(0.88) contrast(1.1);
}

.hero__banner--mobile {
  display: none;
  filter: brightness(0.88) contrast(1.1);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(30, 29, 18, 0.95), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.hero__overlay h1 {
  color: var(--text-light);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero__overlay h1 span {
  color: var(--gold);
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section--cream {
  background: var(--bg-cream);
}

.section--gold-gradient {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  color: var(--text-light);
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__header h2 {
  margin-bottom: 12px;
}

.section__header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section__header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ===================== STEPS ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 20px;
}

.step__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--bg-dark);
}

.step__icon i {
  font-size: 1.5em;
}

.step h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===================== PRIZES ===================== */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.prize-card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.prize-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.prize-card--main {
  border: 2px solid var(--gold);
}

.prize-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 2;
}

.prize-card__visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  position: relative;
  overflow: hidden;
}

.prize-card__visual::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--gold-glow);
  border-radius: 50%;
  filter: blur(40px);
}

.prize-card__amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  z-index: 1;
}

.prize-card__amount small {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.prize-card__body {
  padding: 24px;
}

.prize-card__body h3 {
  margin-bottom: 8px;
}

.prize-card__body p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===================== COUNTDOWN ===================== */
.countdown-section {
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 32px 0;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  background: var(--bg-dark);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.section--dark .countdown__value {
  background: rgba(218, 165, 32, 0.1);
}

.countdown__label {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: lowercase;
}

.section--dark .countdown__label {
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== TRUST ===================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(218, 165, 32, 0.06);
  border: 1px solid var(--border);
}

.trust-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__icon i {
  font-size: 1.5rem;
  color: var(--bg-dark);
}

.trust-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===================== ABOUT TEASER ===================== */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-teaser__content h2 {
  margin-bottom: 16px;
}

.about-teaser__content p {
  margin-bottom: 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-teaser__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.1);
}

/* ===================== FORM ===================== */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}

.form-trust-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
}

.form-trust-banner i {
  font-size: 1.25rem;
  color: var(--green);
  flex-shrink: 0;
}

.form-trust-banner p {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0ddd0;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input.error {
  border-color: #d32f2f;
}

.form-group .error-message {
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group input.error + .error-message {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
  border-radius: var(--radius);
}

.payment-logo {
  height: 60px;
  width: auto;
  max-width: 85px;
  object-fit: contain;
  display: block;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===================== PRIZES PAGE ===================== */
.prize-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.prize-detail--reverse {
  direction: rtl;
}

.prize-detail--reverse > * {
  direction: ltr;
}

.prize-detail__visual {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.prize-detail__visual::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gold-glow);
  border-radius: 50%;
  filter: blur(60px);
}

.prize-detail__amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  text-align: center;
  z-index: 1;
}

.prize-detail__amount small {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 4px;
}

.prize-detail__info h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.prize-detail__info h3 i {
  margin-right: 0.35em;
  color: var(--gold);
}

.prize-detail__info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.prize-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.prize-list-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.prize-list-item:hover {
  transform: translateY(-4px);
}

.prize-list-item__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--gold-dark);
}

.prize-list-item__icon i {
  font-size: 1.2em;
}

.prize-list-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--gold-dark);
}

.prize-list-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===================== ABOUT PAGE ===================== */
.about-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  color: var(--text-light);
  padding: 120px 0 80px;
  margin-top: var(--header-height);
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 16px;
}

.about-hero h1 span {
  color: var(--gold);
}

.about-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-content h2 {
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-stat {
  text-align: center;
  padding: 24px;
  background: rgba(218, 165, 32, 0.06);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-stat__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
}

.about-stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.section--dark .about-stat {
  background: rgba(218, 165, 32, 0.1);
  border-color: rgba(218, 165, 32, 0.25);
}

.section--dark .about-stat__label {
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== LEGAL PAGES ===================== */
.legal-page {
  margin-top: var(--header-height);
  padding: 60px 0;
}

.legal-page h1 {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page ul {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.legal-page ul li {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer__brand-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  text-transform: uppercase;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__trust-item i {
  font-size: 1rem;
  color: var(--green-light);
  flex-shrink: 0;
}

.footer__payment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__payment-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 8px;
}

.footer__payment-logo {
  height: 32px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
  display: block;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__legal {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__18plus {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 16px;
}

.footer__18plus-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #d32f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #d32f2f;
  flex-shrink: 0;
}

.footer__18plus p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ===================== MOBILE OVERLAY ===================== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===================== PAGE HERO (internal pages) ===================== */
.page-hero {
  margin-top: var(--header-height);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gold-glow);
  border-radius: 50%;
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero h1 {
  z-index: 1;
  position: relative;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  z-index: 1;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  font-size: 1.1rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-content,
  .about-teaser,
  .prize-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prize-detail--reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: 56px 0;
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right var(--transition);
    z-index: 1000;
    border-left: 2px solid var(--gold);
  }

  .nav.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
  }

  .header__security {
    display: none;
  }

  .nav .header__security {
    display: flex;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prizes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .countdown {
    gap: 12px;
  }

  .countdown__value {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer__trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__payment {
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__banner--desktop {
    display: none;
  }

  .hero__banner--mobile {
    display: block;
  }

  .hero__overlay {
    padding: 24px;
  }

  .page-hero {
    padding: 60px 0 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
  }

  .btn--lg {
    padding: 14px 28px;
  }

  .countdown__value {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .prize-card__visual {
    height: 160px;
  }

  .step {
    padding: 28px 20px;
  }
}
