/* ============================================================
   MILAN SWEEPSTAKES — Shared Stylesheet
   Colors: #060606 black | #FFD700 gold (bright) | #FFF176 gold-light | #C9A227 gold-dark
   Fonts: Oswald Medium (h1/h2) | Akshar Medium (h3/h4) | Assistant Light (body)
   ============================================================ */

/* ── Privacy-Friendly Fonts via Bunny Fonts ── */
@import url('https://fonts.bunny.net/css?family=bebas-neue:400|oswald:400,500,600|barlow-condensed:300,400,500,600,700|dm-sans:300,400,500&display=swap');

/* ── Local Fonts (BebasNeue only) ── */
@font-face {
  font-family: 'BebasNeue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2'),
       url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400; font-display: swap;
}

/* ── CSS Variables ── */
:root {
  --black:       #050505;
  --black-card:  #0b0b0b;
  --black-light: #0f0f0f;
  --black-mid:   #131313;
  --gold:        #FFD700;
  --gold-dark:   #C9A227;
  --gold-light:  #FFF176;
  --gold-dim:    #8B6914;
  --gold-glow:   rgba(255,215,0,0.08);
  --gold-border: rgba(255,215,0,0.07);
  --gold-bg:     rgba(255,215,0,0.03);
  --white:       #F8F5F0;
  --gray:        #777;
  --gray-light:  #aaa;
  --green:       #4DF5A0;
  --green-glow:  rgba(77,245,160,0.4);
  --radius:      6px;
  --radius-lg:   14px;
  --tr:          0.22s ease;
  --transition:  0.22s ease;
  --shadow:      0 4px 32px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 12px rgba(255,215,0,0.1);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.6);
  --font-display:'Bebas Neue', 'Oswald', sans-serif;
  --font-head:   'Oswald', sans-serif;
  --font-ui:     'Barlow Condensed', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:17px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color: var(--gold); text-decoration:none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Typography ── */
h1, h2 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}
h3, h4, h5 {
  font-family: var(--font-ui);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--gray-light); font-weight: 300; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 48px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title p {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 1rem;
}
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ── Flyer10 Heading System (site-wide) ── */
.label-eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 4.2rem);
  font-weight: 700; line-height: 1.1; letter-spacing: 3px;
  margin-bottom: 16px; color: var(--white);
}
.section-heading span {
  background: linear-gradient(90deg, var(--gold-dim) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-dim) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
  animation: shimmer 3.5s linear infinite;
}
.section-sub {
  font-size: 1.05rem; color: var(--gray-light); line-height: 1.6;
  max-width: 440px; margin: 0 auto;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 36px;
  background: rgba(6,6,6,0.97);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-height: 58px;
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(5,5,5,0.99);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.3px;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo span, .nav-logo .logo-white { color: var(--white); font-weight: 400; }
.nav-logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Nav action buttons — Deposit & Redeem (matched to index.html) */
.btn-nav-deposit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  background: rgba(12,12,12,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4), 0 0 10px rgba(255,215,0,0.08);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-nav-deposit:hover {
  background: rgba(15,15,15,0.96);
  border-color: rgba(255,215,0,0.35);
  color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5), 0 0 16px rgba(255,215,0,0.14);
}
.btn-nav-redeem {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  background: rgba(12,12,12,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-nav-redeem:hover {
  background: rgba(15,15,15,0.96);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
/* Nav actions container */
.nav-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 58px; left: 0; right: 0;
  background: rgba(5,5,5,0.98);
  border-bottom: 1px solid var(--gold-border);
  padding: 20px 28px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(18px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-border);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-actions { display: flex; flex-direction: column; margin-top: 16px; gap: 10px; }
.nav-mobile a.btn-nav-deposit {
  text-align: center; width: 100%; padding: 12px 16px; font-size: 0.88rem;
  border-radius: 3px; color: var(--gold); border: 1px solid rgba(255,215,0,0.15);
  background: rgba(12,12,12,0.94); font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.5px; border-bottom: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4), 0 0 10px rgba(255,215,0,0.08);
}
.nav-mobile a.btn-nav-deposit:hover { background: rgba(15,15,15,0.96); border-color: rgba(255,215,0,0.35); color: var(--gold-light); }
.nav-mobile a.btn-nav-redeem {
  text-align: center; width: 100%; padding: 12px 16px; font-size: 0.88rem;
  border-radius: 3px; color: var(--white); border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12,12,12,0.94); font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.5px; border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.nav-mobile a.btn-nav-redeem:hover { background: rgba(15,15,15,0.96); border-color: rgba(255,255,255,0.2); }

/* ── Buttons (matches index.html V1) ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600; font-size: .92rem; letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all 0.25s ease;
  text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #f0c940 0%, #d4a520 100%);
  color: #2a2a2a;
  box-shadow: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f5d455 0%, #e0b82a 100%);
  box-shadow: 0 2px 10px rgba(240,201,64,0.12);
  color: #2a2a2a;
}
.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.btn-lg  { padding: 16px 40px; font-size: 1.05rem; letter-spacing: 0.8px; font-weight: 700; }
.btn-sm  { padding: 7px 16px; font-size: .78rem; }
.btn-xs  { padding: 5px 14px; font-size: .75rem; }

/* ── Cards (glow border from index testimonials) ── */
.card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% auto;
  animation: border-rotate 3s linear infinite;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(255,215,0,0.12), 0 8px 36px rgba(255,215,0,0.08);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.card h3 { color: var(--gold); margin-bottom: 8px; }

/* ── Grid Layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Forms ── */
.form-wrapper {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group .required::after {
  content: ' *';
  color: #e55;
}
.form-control {
  width: 100%;
  background: var(--black-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'OpenSans', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-control::placeholder { color: var(--gray); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A227' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
select.form-control option { background: var(--black-card); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  border-top: 1px solid var(--gold-border);
  padding-top: 20px;
  margin-top: 8px;
  margin-bottom: 16px;
}

/* ── Phone Input ── */
.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--black-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.phone-input-wrapper:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.phone-flag {
  padding: 0 12px;
  font-size: 1.2rem;
  border-right: 1px solid var(--gold-border);
  color: var(--gray);
  font-size: 0.85rem;
  white-space: nowrap;
}
.phone-input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'OpenSans', sans-serif;
  font-size: 0.9rem;
}
.phone-input-wrapper input:focus { outline: none; }
.phone-input-wrapper input::placeholder { color: var(--gray); }

/* ── Alert / Info Boxes ── */
.alert {
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border-left: 3px solid;
}
.alert-gold {
  background: rgba(201,162,39,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}
.alert-info {
  background: rgba(100,150,255,0.08);
  border-color: #6496ff;
  color: #99b8ff;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--black-light);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 24px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Oswald', 'BebasNeue', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 18px rgba(255,215,0,0.4);
}
.stat-label {
  font-family: 'Akshar', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060606 0%, #0d0a03 50%, #060606 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.08) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.12);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: var(--gray-light);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90%;
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
}

/* ── Page Hero (inner pages) — matches index hero-casino-wide ── */
.page-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--black);
}
.page-hero .hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.70) 50%, rgba(5,5,5,0.55) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  /* shimmer applied by .shimmer-heading / .page-hero h1 rule above */
}
.page-hero p { max-width: 600px; margin: 14px auto 0; font-size: 1.05rem; }

/* ── Tabs ── */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 32px;
  overflow-x: auto;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 24px;
  color: var(--gray);
  font-family: 'OpenSans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--gold-light); }
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Accordion / FAQ ── */
.accordion-item {
  border-bottom: 1px solid var(--gold-border);
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  color: var(--white);
  font-family: 'OpenSans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--gold); }
.accordion-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding-bottom: 18px;
}
.accordion-body.open { display: block; }
.accordion-body p { color: var(--gray-light); }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gold-border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: 'BebasNeue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  min-width: 50px;
  flex-shrink: 0;
}
.step-content h3 { color: var(--gold); margin-bottom: 6px; }

/* ── Tables (Redeem Rules) ── */
.rules-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.rules-table th {
  background: rgba(201,162,39,0.15);
  color: var(--gold);
  font-family: 'BebasNeue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gold-border);
}
.rules-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(201,162,39,0.08);
  color: var(--gray-light);
  font-size: 0.9rem;
}
.rules-table tr:hover td { background: rgba(201,162,39,0.04); }

/* ── Payment Icons ── */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.payment-badge img { height: 20px; width: auto; }

/* ── Contact Info ── */
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.contact-method:hover {
  border-color: var(--gold);
  background: rgba(201,162,39,0.06);
  transform: translateX(4px);
}
.contact-icon { font-size: 1.4rem; }
.contact-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.contact-value {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

/* ── Footer (cleaned up — matches nav logo style) ── */
footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,215,0,0.18);
  padding: 48px 0 24px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-header img {
  width: 38px; height: 38px; object-fit: contain; flex-shrink: 0;
  border-radius: 50%;
}
.footer-brand-header > span {
  font-family: var(--font-head); font-size: 1.15rem;
  color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase;
  font-weight: 500;
}
.footer-brand p {
  font-size: .85rem; max-width: 280px; line-height: 1.6;
  color: #888; font-family: var(--font-body); font-weight: 300;
}
.footer-col h4 {
  font-family: var(--font-head); font-weight: 600;
  color: #ccc; font-size: .92rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: #999; font-size: .88rem;
  transition: color 0.2s; font-family: var(--font-body);
  font-weight: 400;
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; align-items: center; }
.footer-social a {
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-social a img {
  width: 22px !important; height: 22px !important; max-width: 22px;
  object-fit: contain; display: block;
  opacity: 0.7;
  transition: transform 0.2s, opacity 0.2s;
}
.footer-social a:hover img {
  transform: scale(1.12);
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255,215,0,0.10);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: .78rem; color: #666; margin: 0;
  font-family: var(--font-body);
}
.footer-hours {
  font-family: var(--font-body); font-size: .78rem; color: #666;
  letter-spacing: .3px;
}
.footer-hours strong { color: var(--gold); font-weight: 600; }
.footer-disclaimer {
  font-size: .72rem !important;
  text-align: center;
  margin-top: 14px;
  color: #555 !important;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* ── Modal / Popup ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--gold); }
.modal h2 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

/* ── Utility ── */
.divider {
  height: 1px;
  background: var(--gold-border);
  margin: 32px 0;
}
.badge {
  display: inline-block;
  background: rgba(201,162,39,0.15);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.badge-green {
  background: rgba(50,200,100,0.12);
  color: #5de08a;
  border-color: rgba(50,200,100,0.25);
}
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-12 { gap: 12px; }
.flex   { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.82rem; }
  .btn-nav-deposit, .btn-nav-redeem { padding: 5px 12px; font-size: 0.78rem; }
}
@media (max-width: 960px) {
  nav { padding: 8px 24px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.80rem; letter-spacing: 0.3px; }
  .nav-logo { font-size: 1.05rem; }
  .nav-logo-mark { width: 34px; height: 34px; }
  .btn-nav-deposit, .btn-nav-redeem { padding: 5px 12px; font-size: 0.76rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-image { opacity: 0.2; }
}
@media (max-width: 900px) {
  nav { padding: 8px 16px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-mark { width: 32px; height: 32px; }
  .nav-logo { font-size: 1rem; letter-spacing: 0.3px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .form-wrapper { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal { padding: 24px 20px; }
}
@media (max-width: 480px) {
  nav { padding: 8px 14px; min-height: 52px; }
  .nav-logo-mark { width: 26px; height: 26px; }
  .nav-logo { font-size: 0.88rem; gap: 6px; letter-spacing: 0.2px; }
  .nav-mobile { top: 52px; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); display: grid; }
}

/* ── Gold Text Mask ── */
.gold-text-mask {
  background: linear-gradient(135deg, #8B6914 0%, #C9A227 30%, #E8C547 50%, #C9A227 70%, #8B6914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── Testimonial Cards (V4 Style — glow border from index) ── */
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% auto;
  animation: border-rotate 3s linear infinite;
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(255,215,0,0.12), 0 8px 36px rgba(255,215,0,0.08);
}
.stars {
  color: #E8C547;
  font-size: 1rem;
  letter-spacing: 3px;
}
.testimonial-text {
  color: var(--gray-light);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.testimonial-author {
  font-family: 'Akshar', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0;
}
.testimonial-platform {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Category Carousel Rows ── */
.category-row {
  margin-bottom: 48px;
}
.category-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
}
.category-row-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.category-row-count {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.carousel-wrap {
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 16px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .game-card {
  flex: 0 0 200px;
  min-width: 200px;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: rgba(5,5,5,0.92);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.carousel-arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.carousel-arrow.arrow-left { left: -18px; }
.carousel-arrow.arrow-right { right: -18px; }
@media (max-width: 768px) {
  .carousel-track .game-card { flex: 0 0 calc((100vw - 56px - 16px) / 2.4); min-width: 0; }
  .carousel-arrow { display: none; }
}
@media (max-width: 480px) {
  .carousel-track .game-card { flex: 0 0 calc((100vw - 56px - 12px) / 2.15); min-width: 0; }
  .carousel-track { gap: 12px; }
}

/* ── Floating Lucky Reels Button ── */
@keyframes fab-pulse {
  0%   { box-shadow: 0 6px 24px rgba(255,215,0,0.5), 0 0 0 0 rgba(255,215,0,0.35); }
  70%  { box-shadow: 0 6px 24px rgba(255,215,0,0.5), 0 0 0 12px rgba(255,215,0,0); }
  100% { box-shadow: 0 6px 24px rgba(255,215,0,0.5), 0 0 0 0 rgba(255,215,0,0); }
}
/* FAB removed — site-wide cleanup March 29, 2026 */

/* ── Winners Table — Solid Rows ── */
.winners-table td { background: var(--black-card); font-family: 'Akshar', sans-serif; font-size: 1rem; }
.winners-table th { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.85rem; letter-spacing: 1px; }
.winners-table tr:nth-child(even) td { background: var(--black-light); }
.winners-table tr:hover td { background: rgba(255,215,0,0.06) !important; }
.winner-rank { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.1rem; color: var(--gray); }
.winner-rank.gold { color: var(--gold); text-shadow: 0 0 12px rgba(255,215,0,0.5); }
.winner-rank.silver { color: #C0C0C0; }
.winner-rank.bronze { color: #CD7F32; }
.winner-amount { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.1rem; color: #5fff8a; }

/* ── Leaderboard Card Style ── */
.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.32);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 8px;
  transition: all var(--transition);
}
.leaderboard-row:first-child {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,255,255,0.04));
  box-shadow: 0 0 24px rgba(255,215,0,0.15);
}
.leaderboard-row:hover {
  border-color: var(--gold);
  background: rgba(255,215,0,0.07);
  transform: translateX(4px);
}
.lb-rank { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.3rem; min-width: 36px; text-align: center; }
.lb-player { flex: 1; }
.lb-player-name { font-family: 'Akshar', sans-serif; font-weight: 500; font-size: 1.05rem; color: var(--white); letter-spacing: 0.3px; }
.lb-player-platform { font-size: 0.8rem; color: var(--gray-light); letter-spacing: 0.5px; margin-top: 2px; }
.lb-amount { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.5rem; color: #5fff8a; text-align: right; text-shadow: 0 0 12px rgba(95,255,138,0.45); }
.lb-date { font-size: 0.75rem; color: var(--gray-light); text-align: right; margin-top: 2px; }

/* ── Button Icons ── */
.btn-icon { width: 18px; height: 18px; object-fit: contain; display: inline-block; vertical-align: middle; }
.btn-icon-lg { width: 22px; height: 22px; object-fit: contain; display: inline-block; vertical-align: middle; }
.section-icon { width: 36px; height: 36px; object-fit: contain; display: block; margin: 0 auto 10px; }
.section-icon-inline { width: 28px; height: 28px; object-fit: contain; vertical-align: middle; margin-right: 8px; }
/* Primary gold buttons — darken icon so it shows up on gold background */
.btn-primary .btn-icon,
.btn-primary .btn-icon-lg { filter: brightness(0); }
/* Outline (dark) buttons — keep icon gold */
.btn-outline .btn-icon,
.btn-outline .btn-icon-lg { filter: none; }

/* ══════════════════════════════════════════════════
   SITE-WIDE DESIGN TOKENS (from index.html V1)
   Added March 2026 for full consistency
═══════════════════════════════════════════════════ */

/* ── Gold Shimmer Animation ── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.shimmer-heading,
.section-title h2,
.page-hero h1 {
  background: linear-gradient(90deg, var(--gold-dim) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-dim) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
  animation: shimmer 3.5s linear infinite;
}

/* ── Glow Border Rotate (Testimonials/Cards) ── */
@keyframes border-rotate {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.glow-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.glow-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% auto;
  animation: border-rotate 3s linear infinite;
}
.glow-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(255,215,0,0.12), 0 8px 36px rgba(255,215,0,0.08);
}

/* ── Scroll Reveal ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Grain Overlay ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Particle Canvas ── */
#particleCanvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.64;
}

/* ── Section Backgrounds ── */
.bg-alt {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,215,0,0.03) 0%, transparent 70%),
    var(--black-light);
}
.bg-deep {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,162,39,0.04) 0%, transparent 60%),
    var(--black-mid);
}

/* ── Golden Scrollbar ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold-dim));
  border-radius: 5px;
  border: 2px solid #0a0a0a;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}
html { scrollbar-color: var(--gold-dark) #0a0a0a; scrollbar-width: thin; }

/* ── Social Icons (circle style, no-background SVG set) ── */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-icon {
  width: 40px; height: 40px;
  background: var(--black-card); border: 1px solid var(--gold-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.social-icon img {
  width: 22px; height: 22px; object-fit: contain; display: block;
}
.social-icon:hover {
  transform: scale(1.1);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(255,215,0,0.15);
}
.social-icon:hover img {
  filter: brightness(1.2);
}
