/* ================================================================
   WINMYR LANDING PAGE — WHITE & GOLD LUXURY
   ================================================================ */

:root {
  /* White base */
  --color-bg:           #ffffff;
  --color-bg-alt:       #faf8f4;
  --color-surface:      #fdf9f3;
  --color-surface-2:    #fff8ee;

  --color-text:         #1a1409;
  --color-text-muted:   #7a6e5f;
  --color-border:       rgba(180, 140, 60, 0.18);
  --color-border-hover: rgba(180, 140, 60, 0.42);

  /* Brand golds */
  --color-brand:        #b8860b;
  --color-brand-light:  #d4a017;
  --color-brand-dark:   #8b6508;
  --color-brand-tint:   rgba(184, 134, 11, 0.07);
  --color-brand-glow:   rgba(184, 134, 11, 0.18);

  /* Accent warm orange */
  --color-accent:       #e07b1a;

  /* Type */
  --font-body:    'Inter', system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  /* Layout */
  --container-width: 1120px;
  --radius:    16px;
  --radius-sm: 10px;
  --gap:       24px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(100, 80, 20, 0.08);
  --shadow-md:   0 12px 40px rgba(100, 80, 20, 0.12);
  --shadow-gold: 0 8px 32px rgba(184, 134, 11, 0.16);
}

/* ---------------------------------------------------------------
   RESET / BASE
--------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.8rem, 6.5vw, 4.2rem); font-weight: 700; font-family: var(--font-display); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; }

/* Ampersand override — Playfair's & is illegible at display size */
.hero-amp {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 0.85em;
}

p { margin: 0 0 1em; color: var(--color-text-muted); }

ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------------------------------------------
   REVEAL ANIMATIONS
--------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease-out,
              transform 0.35s ease-out;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal]:nth-child(2) { transition-delay: 0.04s; }
[data-reveal]:nth-child(3) { transition-delay: 0.08s; }
[data-reveal]:nth-child(4) { transition-delay: 0.12s; }
[data-reveal]:nth-child(5) { transition-delay: 0.16s; }
[data-reveal]:nth-child(6) { transition-delay: 0.20s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------
   BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand-light), var(--color-brand-dark));
  color: #fff;
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e6b320, var(--color-brand));
  box-shadow: var(--shadow-gold);
}

.btn-glow { box-shadow: 0 4px 20px rgba(184, 134, 11, 0.22); }
.btn-glow:hover { box-shadow: 0 8px 40px rgba(184, 134, 11, 0.36); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-brand-tint);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 12px; }

/* ---------------------------------------------------------------
   HEADER / NAV
--------------------------------------------------------------- */
.site-header {
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo-link { display: flex; align-items: center; }

.logo-img { height: 40px; width: auto; transition: opacity 0.2s; }
.logo-img:hover { opacity: 0.8; }
.logo-footer { height: 48px; }

.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-brand-light));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-nav a:hover { color: var(--color-brand); }
.main-nav a:hover::after { width: 100%; }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-brand);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 70%);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  top: -130px; left: -120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.45), transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(224, 123, 26, 0.28), transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(30px, -20px); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 134, 11, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 11, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--color-brand);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.hero h1 { letter-spacing: -0.02em; color: var(--color-text); }

.hero-gradient-text {
  background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand-light), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 1em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 14px;
}

.hero-disclaimer { font-size: 0.68rem; color: var(--color-text-muted); opacity: 0.7;}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.stat-card strong {
  display: block;
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--color-brand);
  margin-bottom: 4px;
}
.stat-card span { font-size: 0.8rem; color: var(--color-text-muted); }

/* ---------------------------------------------------------------
   SECTIONS
--------------------------------------------------------------- */
.section     { padding: 80px 0; background: var(--color-bg); }
.section-dark{ padding: 80px 0; background: var(--color-surface); }
.section-alt  { padding: 80px 0; background: var(--color-bg-alt); }

/* Warm gold-wash — used for the second card-grid section so it
   reads differently from the plain cream .section-alt above it */
.section-gold {
  padding: 80px 0;
  background: linear-gradient(180deg, #fffbef 0%, #fff8e4 100%);
  border-top: 1px solid rgba(184, 134, 11, 0.14);
  border-bottom: 1px solid rgba(184, 134, 11, 0.14);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 8px;
}

.section-lead { max-width: 640px; margin-bottom: 40px; }

/* ---------------------------------------------------------------
   HOT GAMES
--------------------------------------------------------------- */
.hot-games-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.hot-game-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hot-game-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.hot-game-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hot-game-info { padding: 12px 14px; }

.hot-game-title {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hot-game-provider {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rtp-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  color: var(--color-brand-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  border: 1px solid var(--color-border);
}

/* ---------------------------------------------------------------
   GAME CARDS
--------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand-dark), var(--color-brand-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.card:hover::before { opacity: 1; }

.card-icon { font-size: 2rem; margin-bottom: 14px; }

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand-dark);
  background: var(--color-brand-tint);
  border: 1px solid var(--color-border);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s, color 0.2s;
}
.card-link:hover { gap: 12px; color: var(--color-brand-dark); }
.card-link i { font-size: 0.75rem; transition: transform 0.3s; }
.card:hover .card-link i { transform: translateX(4px); }

/* ---------------------------------------------------------------
   LUCKY DRAW BANNER
--------------------------------------------------------------- */
.section-lucky { padding: 40px 0; background: var(--color-bg); }

.lucky-banner {
  position: relative;
  background: linear-gradient(135deg, #fffbef, #fff8e1);
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: 24px;
  padding: 56px 48px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.lucky-content { position: relative; z-index: 2; max-width: 560px; }

.lucky-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.lucky-banner h2 { color: var(--color-brand-dark); }
.lucky-banner p  { color: var(--color-text-muted); }
.lucky-banner strong { color: var(--color-brand-dark); }

.lucky-decoration {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  pointer-events: none;
}

.lucky-circle {
  position: absolute;
  width: 300px; height: 300px;
  border: 2px solid rgba(184, 134, 11, 0.15);
  border-radius: 50%;
  top: 50%; right: -40px;
  transform: translateY(-50%);
  animation: spinSlow 20s linear infinite;
}
.lucky-circle-2 {
  width: 200px; height: 200px;
  border-color: rgba(224, 123, 26, 0.1);
  right: 20px;
  animation-direction: reverse;
  animation-duration: 15s;
}

@keyframes spinSlow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* ---------------------------------------------------------------
   STEPS
--------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: 40px;
}

.step { display: flex; gap: 16px; align-items: flex-start; }

.step-number-wrap {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--color-brand-tint);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.step:hover .step-number-wrap {
  background: var(--color-brand);
  border-color: var(--color-brand);
  box-shadow: var(--shadow-gold);
}

.step-number {
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-brand);
  font-family: var(--font-display);
  transition: color 0.3s;
}
.step:hover .step-number { color: #fff; }
.step h3 { margin-bottom: 4px; }
.cta-inline { margin-top: 48px; text-align: center; }

/* ---------------------------------------------------------------
   FEATURES GRID
--------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-brand-tint);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: var(--color-brand);
  transition: all 0.3s;
}
.feature-card:hover .feature-icon-wrap {
  background: var(--color-brand);
  color: #fff;
  border-color: var(--color-brand);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.25);
}

/* ---------------------------------------------------------------
   VIP
--------------------------------------------------------------- */
.vip-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 40px;
}

.vip-tier {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
  cursor: default;
  border: 1px solid transparent;
}
.vip-tier:hover { transform: scale(1.05); box-shadow: var(--shadow-sm); }

.vip-t1 { background: #f5f4f2; color: #7a6e5f; border-color: #e8e3db; }
.vip-t2 { background: #fdf3e3; color: #8b5e0a; border-color: #f0d8a0; }
.vip-t3 { background: #f2f2f4; color: #5a5a6a; border-color: #d8d8e8; }
.vip-t4 { background: #fdf8e8; color: var(--color-brand-dark); border-color: rgba(184, 134, 11, 0.3); }
.vip-t5 { background: #eef3fd; color: #2255bb; border-color: #c8d8f8; }
.vip-t6 { background: #e8f4fd; color: #1166bb; border-color: #b8d8f0; }
.vip-t7 { background: #f4eeff; color: #7733cc; border-color: #d8c0f0; }
.vip-t8 { background: #feeef6; color: #bb1166; border-color: #f0c8e0; }

.vip-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.vip-perk {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.vip-perk:hover { border-color: var(--color-border-hover); box-shadow: var(--shadow-gold); }

.vip-perk strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-brand-dark);
  margin-bottom: 8px;
}
.vip-perk p { margin: 0; }

.vip-note { margin-top: 24px; font-size: 0.85rem; color: var(--color-text-muted); }

/* ---------------------------------------------------------------
   COMPARISON TABLE
--------------------------------------------------------------- */
.compare-wrap {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.compare-table thead th {
  background: var(--color-surface);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  font-weight: 700;
  font-family: var(--font-body);
}

.compare-table tbody tr { transition: background 0.2s; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--color-brand-tint); }

.col-winmyr { background: rgba(184, 134, 11, 0.04); color: var(--color-text); }
.compare-table thead .col-winmyr {
  color: var(--color-brand-dark);
  background: rgba(184, 134, 11, 0.08);
}
.compare-table td strong { color: var(--color-brand-dark); }

.compare-note { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 14px; }

/* ---------------------------------------------------------------
   SEO CONTENT
--------------------------------------------------------------- */
.seo-section { border-top: 1px solid var(--color-border); }

.winmyr-seo-footer { max-width: 860px; }

.seo-heading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 24px;
}

.seo-wrapper {
  position: relative;
  max-height: 220px;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.seo-wrapper.expanded { max-height: 9999px; }

.seo-content h2 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--color-text);
}
.seo-content h3 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 6px;
  color: var(--color-text);
}
.seo-content p { color: var(--color-text-muted); }
.seo-content a { color: var(--color-brand); text-decoration: underline; }
.seo-content a:hover { color: var(--color-brand-dark); }

.seo-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--color-bg-alt));
  pointer-events: none;
  transition: opacity 0.3s;
}
.seo-wrapper.expanded .seo-fade { opacity: 0; }

.seo-toggle {
  margin-top: 18px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}
.seo-toggle:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-brand-tint);
}

/* ---------------------------------------------------------------
   FAQ
--------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  max-width: 780px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: var(--color-border-hover); box-shadow: var(--shadow-gold); }

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--color-brand);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: "\2212"; transform: rotate(180deg); }
.faq-item[open] summary { color: var(--color-brand-dark); }

.faq-item p {
  margin-top: 14px;
  margin-bottom: 0;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-item p { animation-duration: 0.18s; }

/* ---------------------------------------------------------------
   CTA BAND
--------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, #fdf8e8, #fff9ef);
  border-top: 1px solid rgba(184, 134, 11, 0.2);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  text-align: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 134, 11, 0.06), transparent 60%);
  pointer-events: none;
}

.cta-band-inner { position: relative; }
.cta-band h2   { color: var(--color-brand-dark); }
.cta-band p    { color: var(--color-text-muted); }
.cta-band .btn-primary { margin: 12px 0 16px; }
.cta-band .hero-disclaimer { color: var(--color-text-muted); opacity: 0.7; }

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-top: 56px;
}

.footer-awards {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 44px;
  align-items: center;
}

.footer-award-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.3s, transform 0.3s;
  display: block;
}
.footer-award-img:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.footer-badge-img {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.footer-badge-img:hover { opacity: 0.8; }

.security-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-border-hover);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
  padding-bottom: 36px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: var(--color-brand-dark);
}

.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { color: var(--color-text-muted); transition: color 0.2s; font-size: 0.9rem; }
.footer-col a:hover { color: var(--color-brand); }
.footer-col p   { margin-top: 12px; margin-bottom: 0; }

.social-icons { display: flex; gap: 10px; margin-top: 2px; }

.social-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.social-icon:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-brand-tint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.footer-secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  padding-bottom: 36px;
}

.security-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; align-items: center; }

.footer-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 0 32px;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  padding-bottom: 8px;
  align-items: center;
}

.footer-license { display: flex; gap: 14px; align-items: center; }
.footer-license p { margin: 0; }

.footer-copyright {
  text-align: center;
  padding: 24px 0 32px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.footer-copyright a { color: var(--color-brand); transition: color 0.2s; }
.footer-copyright a:hover { color: var(--color-brand-dark); text-decoration: underline; }

img[alt="BeGambleAware"] {
  filter: invert(1);   /* flips white to black */
}

img[alt="Operator Awards 2024"] {
  filter: invert(1); 
}

/* ---------------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------------- */

/* ── 1000px: tablet landscape ── */
@media (max-width: 1000px) {
  .hot-games-track { grid-template-columns: repeat(3, 1fr); }
}

/* ── 900px: tablet portrait ── */
@media (max-width: 900px) {
  .card-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .vip-perks { grid-template-columns: 1fr 1fr; }
  .footer-links-grid { grid-template-columns: repeat(3, 1fr); }

  /* Section spacing tightened for tablet */
  .section, .section-alt, .section-gold, .section-dark { padding: 60px 0; }
  .cta-band { padding: 56px 0; }
}

/* ── 720px: large phones / small tablets ── */
@media (max-width: 720px) {
  /* --- Nav --- */
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 20px;
    gap: 16px;
    z-index: 40;
    box-shadow: var(--shadow-md);
  }
  .main-nav.is-open a { font-size: 1rem; padding: 8px 0; }
  .main-nav.is-open a::after { display: none; }
  .nav-toggle { display: flex; }

  /* --- Hero --- */
  .hero { padding: 64px 0 52px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  /* --- Hot games --- */
  .hot-games-track { grid-template-columns: repeat(2, 1fr); }

  /* --- Lucky banner --- */
  .lucky-banner { padding: 40px 28px; }
  .lucky-decoration { display: none; } /* hides decorative circles that overflow on mobile */

  /* --- Compare table: allow horizontal scroll with visual hint --- */
  .compare-wrap { -webkit-overflow-scrolling: touch; }
  .compare-table th,
  .compare-table td { padding: 12px 14px; font-size: 0.86rem; }

  /* --- Footer links: 2 columns at this size --- */
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 560px: phones ── */
@media (max-width: 560px) {
  /* --- Global spacing --- */
  .section, .section-alt, .section-gold, .section-dark { padding: 48px 0; }
  .cta-band { padding: 48px 0; }
  .container { padding: 0 16px; }

  /* --- Header --- */
  .header-actions .btn-ghost { display: none; }
  .logo-img { height: 34px; }

  /* --- Hero --- */
  .hero { padding: 52px 0 44px; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 36px; }
  .stat-card { padding: 16px 10px; }
  .stat-card strong { font-size: 1.1rem; }

  /* Hero buttons stacked and full-width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn { text-align: center; }

  /* --- Cards --- */
  .card-grid, .features-grid, .vip-perks { grid-template-columns: 1fr; }
  .card { padding: 22px 18px; }
  .feature-card { padding: 22px 18px; }

  /* --- Steps: single column, horizontal layout per step --- */
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .step { flex-direction: row; align-items: flex-start; }

  /* --- Hot games: 2-col stays, but tighter --- */
  .hot-games-track { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hot-game-img { height: 80px; }

  /* --- Lucky banner --- */
  .lucky-banner { padding: 32px 20px; border-radius: 16px; }
  .lucky-banner h2 { font-size: 1.3rem; }

  /* --- Compare table --- */
  .compare-table th,
  .compare-table td { padding: 10px 12px; font-size: 0.82rem; }

  /* --- VIP tiers wrap tighter --- */
  .vip-tier { padding: 8px 14px; font-size: 0.8rem; }

  /* --- FAQ --- */
  .faq-item { padding: 14px 16px; }

  /* --- CTA band --- */
  .cta-band .btn-lg {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }

  /* --- Footer --- */
  .footer-links-grid,
  .footer-secondary-row,
  .footer-bottom-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-awards { gap: 10px; padding-bottom: 32px; }
  .footer-award-img { height: 60px; width: 60px; }

  .footer-bottom-grid { padding-bottom: 16px; }
  .footer-license { flex-direction: column; align-items: flex-start; gap: 10px; }

  .security-badges { gap: 10px; flex-wrap: wrap; }

  .footer-col { margin-bottom: 4px; }
  .logo-footer { height: 38px; }

  /* BeGambleAware & EGR are white-on-white — invert so they're visible */
  img[alt="BeGambleAware"],
  img[alt="EGR Awards"] { filter: brightness(0); opacity: 0.55; }

  /* --- SEO section --- */
  .winmyr-seo-footer { max-width: 100%; }

  /* --- Section headings --- */
  h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
}

/* ── 400px: very small phones (iPhone SE etc.) ── */
@media (max-width: 400px) {
  .hero h1 { font-size: 1.55rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hot-games-track { grid-template-columns: repeat(2, 1fr); }
  .btn-lg { padding: 14px 18px; font-size: 0.95rem; }
  .header-actions .btn-primary { padding: 10px 16px; font-size: 0.85rem; }
}

/* ---------------------------------------------------------------
   INTRO SECTION
--------------------------------------------------------------- */
.section-intro { padding: 56px 0 48px; }

.intro-inner { max-width: 760px; }

.intro-lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}
