/* ================================================================
   MILLION CASINO — EASTER LANDING PAGE
   Brand: Deep blacks, rich golds + Easter spring accents
   ================================================================ */

/* ===== RESET & VARIABLES ===== */
:root {
  --black:        #060402;
  --black-light:  #0c0804;
  --black-card:   #100d05;
  --gold:         #c8a84b;
  --gold-bright:  #e8c95a;
  --gold-dim:     #8b6914;
  --gold-muted:   #4a3a1a;
  --amber:        #d4892a;
  --amber-bright: #f0a83a;
  --amber-dim:    #8a5010;
  --copper:       #c06830;
  --text-white:   #f5f0e0;
  --text-muted:   #7a6a40;
  --text-light:   #bfa86a;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --font-main:    'Rubik', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', 'Rubik', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== FONTS ===== */
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Regular.woff2') format('woff2'),
       url('../fonts/Rubik-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Medium.woff2') format('woff2'),
       url('../fonts/Rubik-Medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Bold.woff2') format('woff2'),
       url('../fonts/Rubik-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-ExtraBold.woff2') format('woff2'),
       url('../fonts/Rubik-ExtraBold.woff') format('woff');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
       url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
       url('../fonts/Inter-SemiBold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
       url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'),
       url('../fonts/Inter-ExtraBold.woff') format('woff');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Black.woff2') format('woff2'),
       url('../fonts/Inter-Black.woff') format('woff');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ===== EASTER DECORATIVE ELEMENTS ===== */
.easter-egg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.easter-egg svg {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

/* Floating animation */
@keyframes floatEgg1 {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(6px, -14px) rotate(4deg); }
}
@keyframes floatEgg2 {
  0%, 100% { transform: translate(0, 0) rotate(5deg); }
  50% { transform: translate(-8px, -10px) rotate(-6deg); }
}
@keyframes floatEgg3 {
  0%, 100% { transform: translate(0, 0) rotate(10deg); }
  50% { transform: translate(10px, -8px) rotate(-3deg); }
}
@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ===== HEADER ===== */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: transparent;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-register {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #0a0600;
  box-shadow: 0 4px 20px rgba(200,168,75,0.25);
}
.btn-register:hover {
  background: linear-gradient(135deg, var(--gold-bright), #f0d56a);
  box-shadow: 0 6px 30px rgba(200,168,75,0.4);
  transform: translateY(-1px);
}

.btn-login {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(200,168,75,0.3);
}
.btn-login:hover {
  border-color: var(--gold);
  background: rgba(200,168,75,0.08);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 40px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 22% 55%, rgba(160,90,15,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 70% 30%, rgba(220,155,40,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 85% 75%, rgba(150,80,10,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(100,55,5,0.4) 0%, transparent 60%),
    linear-gradient(180deg, #1a0e03 0%, #120900 50%, #0a0500 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 28% 50%, rgba(200,120,20,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 68% 40%, rgba(220,168,50,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(180,110,15,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Easter decorative eggs in hero */
.hero .easter-egg--1 {
  top: 12%; left: 5%;
  animation: floatEgg1 8s ease-in-out infinite;
}
.hero .easter-egg--2 {
  top: 20%; right: 3%;
  animation: floatEgg2 10s ease-in-out infinite 1s;
}
.hero .easter-egg--3 {
  bottom: 25%; left: 8%;
  animation: floatEgg3 9s ease-in-out infinite 0.5s;
}
.hero .easter-egg--4 {
  top: 60%; right: 8%;
  animation: floatEgg1 11s ease-in-out infinite 2s;
}
.hero .easter-egg--5 {
  bottom: 15%; right: 15%;
  animation: floatEgg2 7s ease-in-out infinite 1.5s;
}

/* Sparkles */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.sparkle--gold { background: var(--gold-bright); }
.sparkle--green { background: var(--amber-bright); }
.sparkle--purple { background: var(--copper); }

.sparkle--1 { top: 15%; left: 20%; animation: sparkle 3s ease-in-out infinite; }
.sparkle--2 { top: 35%; right: 12%; animation: sparkle 2.5s ease-in-out infinite 0.8s; }
.sparkle--3 { top: 55%; left: 15%; animation: sparkle 4s ease-in-out infinite 1.2s; }
.sparkle--4 { top: 70%; right: 25%; animation: sparkle 3.5s ease-in-out infinite 0.4s; }
.sparkle--5 { top: 25%; left: 45%; animation: sparkle 2.8s ease-in-out infinite 2s; }
.sparkle--6 { top: 80%; left: 35%; animation: sparkle 3.2s ease-in-out infinite 1.6s; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-direction: row;
}

.hero-text {
  flex: 1;
  max-width: 560px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber-bright);
  background: rgba(212,137,42,0.1);
  border: 1px solid rgba(212,137,42,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.hero-label {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.hero-amount {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #f5d060 0%, #e8a830 50%, #c8821a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  text-shadow: none;
}

.hero-game {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.3;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Promo code box */
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(200,168,75,0.06);
  border: 1.5px dashed rgba(200,168,75,0.3);
  border-radius: 14px;
  padding: 14px 24px;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.promo-code-box:hover {
  border-color: var(--gold);
  background: rgba(200,168,75,0.1);
}
.promo-code-box__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.promo-code-box__code {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}
.promo-code-box__copy {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--gold-dim);
  opacity: 0;
  transition: opacity 0.3s;
}
.promo-code-box:hover .promo-code-box__copy {
  opacity: 1;
}
.promo-code-box__copy svg {
  width: 14px; height: 14px;
}
.promo-code-box.copied .promo-code-box__copy {
  opacity: 1;
  color: var(--easter-green);
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #0a0600;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  padding: 16px 40px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow:
    0 4px 25px rgba(200,168,75,0.3),
    0 0 60px rgba(200,168,75,0.1);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-cta:hover::before {
  transform: translateX(100%);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 35px rgba(200,168,75,0.4),
    0 0 80px rgba(200,168,75,0.15);
}
.btn-cta svg {
  width: 20px;
  height: 20px;
}

/* Floating game card in hero */
.hero-game-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: 14px;
  padding: 10px 16px 10px 10px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 30px rgba(200,168,75,0.06);
}
.hero-game-card__img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-game-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-game-card__info {}
.hero-game-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.hero-game-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}
.hero-game-card__provider {
  font-size: 11px;
  color: var(--gold-dim);
  margin-top: 2px;
}

/* Hero actions row: promo + CTA side by side */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
  flex: 0 0 auto;
  width: auto;
  max-width: 50%;
  height: 100%;
  position: relative;
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
}
.hero-image img {
  width: auto;
  height: 92%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  object-position: bottom;
  display: block;
  filter: drop-shadow(0 10px 50px rgba(0,0,0,0.5));
  mask-image: linear-gradient(to bottom, transparent 0%, black 3%, black 90%, transparent 100%),
              linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 3%, black 90%, transparent 100%),
                      linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-composite: source-in;
}

/* ===== OFFER DETAILS SECTION ===== */
.offer-section {
  padding: 80px 40px 60px;
  background:
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(200,140,30,0.05) 0%, transparent 100%),
    var(--black);
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  text-align: center;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.section-desc {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  margin-top: 12px;
}

.offer-header {
  margin-bottom: 56px;
}

/* Main offer card */
.offer-card {
  max-width: 800px;
  margin: 0 auto;
  background:
    linear-gradient(170deg, rgba(212,137,42,0.07) 0%, rgba(200,168,75,0.04) 30%, rgba(16,13,5,0.97) 60%),
    var(--black-card);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 60px rgba(200,140,30,0.06), 0 20px 60px rgba(0,0,0,0.4);
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--gold-bright), var(--gold), var(--amber-bright));
  border-radius: 20px 20px 0 0;
}

.offer-card__inner {
  display: flex;
  align-items: stretch;
}

.offer-card__visual {
  flex: 0 0 260px;
  background:
    radial-gradient(circle at 50% 40%, rgba(200,140,30,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #130d03, #0e0a02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.offer-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 80%, rgba(200,168,75,0.07) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(212,137,42,0.07) 0%, transparent 50%);
}
.offer-card__visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Real game image */
.game-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(200,168,75,0.2),
    0 8px 32px rgba(0,0,0,0.6),
    0 0 40px rgba(200,140,30,0.15);
  position: relative;
}
.game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(200,168,75,0.15);
}

.game-provider {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.game-name-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-bright);
}

.offer-card__details {
  flex: 1;
  padding: 40px 36px;
}

.offer-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.offer-detail {
  background: rgba(200,168,75,0.04);
  border: 1px solid rgba(200,168,75,0.08);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
}
.offer-detail__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.offer-detail__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-bright);
}
.offer-detail__value--green {
  color: var(--amber-bright);
}

.offer-card__promo {
  background: rgba(200,168,75,0.06);
  border: 1.5px dashed rgba(200,168,75,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.offer-card__promo:hover {
  border-color: var(--gold);
  background: rgba(200,168,75,0.1);
}
.offer-card__promo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.offer-card__promo-code {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.offer-card__promo-hint {
  font-size: 10px;
  color: var(--gold-dim);
  margin-top: 4px;
}

.offer-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ===== HOW IT WORKS ===== */
.steps-section {
  padding: 80px 40px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(200,168,75,0.03) 0%, transparent 100%),
    var(--black-light);
  border-top: 1px solid rgba(200,168,75,0.06);
  border-bottom: 1px solid rgba(200,168,75,0.06);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.step-card {
  background:
    linear-gradient(170deg, rgba(200,168,75,0.04) 0%, transparent 50%),
    var(--black-card);
  border: 1px solid rgba(200,168,75,0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,168,75,0.18);
}

.step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-bright), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-card .step-highlight {
  font-weight: 700;
  color: var(--gold);
}

/* ===== TERMS SECTION ===== */
.terms-section {
  padding: 60px 40px;
  background: var(--black);
}
.terms-box {
  max-width: 800px;
  margin: 32px auto 0;
  background: rgba(200,168,75,0.03);
  border: 1px solid rgba(200,168,75,0.08);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.terms-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
.terms-box li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.terms-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
}
.terms-box li strong {
  color: var(--text-light);
  font-weight: 600;
}

/* ===== PARTNERS ===== */
.partners {
  background: var(--black);
  padding: 56px 40px;
  border-top: 1px solid rgba(200,168,75,0.06);
  border-bottom: 1px solid rgba(200,168,75,0.07);
}
.partners-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 34px;
}
.partners-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 44px;
}
.p-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(0.2) brightness(0.85);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}
.p-logo:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.08);
}

/* ===== FOOTER ===== */
.footer {
  background: #040300;
  padding: 44px 40px 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 12.5px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-cookie {
  text-align: center;
  margin-bottom: 24px;
}
.footer-cookie a {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-cookie a:hover { color: var(--gold); }

.footer-line {
  height: 1px;
  background: rgba(200,168,75,0.09);
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer-badges img {
  height: 34px;
  object-fit: contain;
  opacity: 0.65;
}

.footer-legal {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.footer-legal-link {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12.5px;
  color: var(--gold);
}
.footer-legal-text {
  font-family: var(--font-display);
  font-size: 11px;
  color: #3a2c10;
  line-height: 1.75;
}
.footer-legal-text a { color: #5a4620; }
.footer-copy {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(200,168,75,0.06);
  text-align: center;
  font-size: 11px;
  color: #3a2c10;
}

/* ===== SCROLL REVEAL ===== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.step-card:nth-child(2).reveal-on-scroll { transition-delay: 0.1s; }
.step-card:nth-child(3).reveal-on-scroll { transition-delay: 0.2s; }
.step-card:nth-child(4).reveal-on-scroll { transition-delay: 0.3s; }

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
  .hero {
    padding: 70px 24px 0;
  }
  .hero-text {
    padding-bottom: 40px;
  }
  .offer-card__visual {
    flex: 0 0 220px;
  }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 100vh;
    max-height: none;
    padding: 80px 24px 0;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
  }
  .hero-image {
    width: 320px;
    max-width: 60%;
    height: auto;
    order: 1;
    align-self: center;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .hero-text {
    max-width: 100%;
    order: 2;
    padding-bottom: 32px;
  }
  .hero-title {
    align-items: center;
  }
  .hero-badge {
    margin-bottom: 16px;
  }
  .hero-actions {
    justify-content: center;
  }
  .promo-code-box {
    justify-content: center;
  }

  .offer-card__inner {
    flex-direction: column;
  }
  .offer-card__visual {
    flex: none;
    padding: 32px 24px;
  }
  .offer-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }

  .terms-box ul {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 680px) {
  .header-actions {
    display: none;
  }
  .header {
    padding: 12px 16px;
    justify-content: flex-start;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    padding: 0;
    display: flex;
    align-items: flex-start;
  }
  .hero-bg::after {
    height: 140px;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    gap: 0;
    padding-top: 12px;
  }
  .hero-image {
    order: 1;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
  }
  .hero-image img {
    width: 100%;
    height: auto;
    max-height: none;
    margin-bottom: -10px;
  }
  .hero-text {
    order: 2;
    padding: 8px 20px 20px;
    width: 100%;
  }
  .hero-badge {
    font-size: 9px;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    margin-bottom: 8px;
  }
  .hero-label {
    font-size: 16px;
  }
  .hero-amount {
    font-size: clamp(34px, 10vw, 48px);
  }
  .hero-game {
    font-size: 15px;
  }
  .hero-subtitle {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .hero-title {
    gap: 2px;
    margin-bottom: 8px;
  }
  /* Скрываем карточку слота на мобильном — чтобы кнопка влезла */
  .hero-game-card {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  .promo-code-box {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    margin-bottom: 0;
    gap: 10px;
  }
  .promo-code-box__code {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .promo-code-box__label {
    font-size: 9px;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Hide decorative eggs on mobile */
  .easter-egg { display: none; }
  .sparkle { display: none; }

  .offer-section,
  .steps-section {
    padding: 48px 16px;
  }
  .offer-card__details {
    padding: 24px 20px;
  }
  .offer-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .offer-detail {
    padding: 14px 12px;
  }
  .offer-detail__value {
    font-size: 18px;
  }
  .offer-card__promo-code {
    font-size: 22px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .terms-section {
    padding: 40px 16px;
  }
  .terms-box {
    padding: 20px 18px;
  }

  .partners {
    padding: 36px 16px;
  }
  .footer {
    padding: 28px 16px 16px;
  }
}

@media (max-width: 400px) {
  .hero-amount {
    font-size: 32px;
  }
  .hero-game {
    font-size: 13px;
  }
  .hero-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .btn-cta {
    font-size: 14px;
    padding: 13px 18px;
  }
  .offer-detail-grid {
    grid-template-columns: 1fr;
  }
}
