/* ============================================================
   ParadiseClub77 – Main Stylesheet
   Theme: Game UI — Dark Black + Gold (matches paradiseclub77.com)
   Last Updated: 2026-08-19
   ============================================================ */

/* ============================================================
   BASE – Reset & Variables
   ============================================================ */
:root {
  /* Color Palette – Gold Gaming Theme */
  --clr-bg:            #0a0a0f;
  --clr-bg-alt:        #0d0d14;
  --clr-surface:       #12121e;
  --clr-surface-alt:   #181828;
  --clr-border:        #2a2040;

  /* Gold Accent (Primary) */
  --clr-gold:          #f5c842;
  --clr-gold-dark:     #c9940a;
  --clr-gold-light:    #fde27a;
  --clr-gold-glow:     rgba(245,200,66,.18);
  --clr-gold-glow2:    rgba(245,200,66,.08);

  /* Amber secondary */
  --clr-amber:         #f09d1a;
  --clr-amber-dark:    #b56f0a;

  /* Text */
  --clr-text:          #e8e0f5;
  --clr-text-muted:    #9080b0;
  --clr-text-faint:    #4a3f6a;
  --clr-white:         #ffffff;

  /* Status */
  --clr-danger:        #e05252;
  --clr-warning-bg:    #1a1408;
  --clr-warning-bdr:   #c9a227;
  --clr-info-bg:       #0d0d1a;
  --clr-info-bdr:      #4040cc;

  /* Header */
  --header-h:          64px;

  /* Typography */
  --font-base:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono:         'JetBrains Mono', 'Fira Code', Consolas, monospace;

  /* Spacing */
  --sp-xs:   4px;
  --sp-sm:   8px;
  --sp-md:   16px;
  --sp-lg:   24px;
  --sp-xl:   40px;
  --sp-2xl:  64px;
  --sp-3xl:  96px;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,.5);
  --shadow-md:   0 4px 18px rgba(0,0,0,.6);
  --shadow-lg:   0 8px 36px rgba(0,0,0,.7);
  --shadow-glow: 0 0 24px rgba(245,200,66,.3);
  --shadow-glow-lg: 0 0 48px rgba(245,200,66,.2);

  /* Transitions */
  --tr-fast: 150ms ease;
  --tr-base: 260ms ease;
  --tr-slow: 420ms ease;

  /* Layout */
  --container-max: 1000px;
  --container-narrow: 750px;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-base);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(245,200,66,.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(245,150,20,.03) 0%, transparent 50%);
}

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

a { color: var(--clr-gold); text-decoration: none; transition: color var(--tr-fast), opacity var(--tr-fast); }
a:hover { color: var(--clr-gold-light); }
a:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: 3px; border-radius: var(--radius-sm); }

ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: var(--clr-white); }
p { color: var(--clr-text); }
section { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.text-gold    { color: var(--clr-gold); }
.text-amber   { color: var(--clr-amber); }
.text-muted   { color: var(--clr-text-muted); }
.text-center  { text-align: center; }
.text-sm      { font-size: .875rem; }
.text-xs      { font-size: .78rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--sp-md); }
.section { padding-block: var(--sp-2xl); }
.section--alt { background-color: var(--clr-bg-alt); }

.section-header { margin-bottom: var(--sp-xl); }
.section-header h2 { font-size: clamp(1.45rem, 4vw, 2rem); margin-bottom: var(--sp-sm); }
.section-header p { color: var(--clr-text-muted); max-width: 640px; }
.section-line {
  display: inline-block; width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  border-radius: var(--radius-pill); margin-bottom: var(--sp-md);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky; top: 0; z-index: 900; height: var(--header-h);
  background: rgba(10,10,15,.96);
  border-bottom: 1px solid rgba(245,200,66,.15);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding-inline: var(--sp-md);
  max-width: var(--container-max); margin-inline: auto;
}
.site-logo { display: flex; align-items: center; gap: var(--sp-sm); text-decoration: none; }
.logo-img { width: 42px; height: 42px; border-radius: var(--radius-sm); object-fit: cover; filter: drop-shadow(0 0 8px rgba(245,200,66,.4)); }
.logo-text { font-size: 1.1rem; font-weight: 800; letter-spacing: -.3px; color: var(--clr-white); line-height: 1.1; }
.logo-text span { color: var(--clr-gold); }

.site-nav { display: flex; align-items: center; gap: var(--sp-md); }
.nav-links { display: flex; align-items: center; gap: var(--sp-sm); }
.nav-links a {
  font-size: .85rem; font-weight: 600; color: var(--clr-text-muted);
  padding: var(--sp-xs) var(--sp-sm); border-radius: var(--radius-sm);
  transition: color var(--tr-fast), background var(--tr-fast);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--clr-gold); background: var(--clr-gold-glow2); }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; border-radius: var(--radius-sm); transition: background var(--tr-fast);
}
.nav-toggle:hover { background: var(--clr-surface); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--clr-gold); border-radius: 2px; transition: transform var(--tr-base), opacity var(--tr-base); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0;
  background: rgba(10,10,15,.98); z-index: 850;
  padding: var(--sp-xl) var(--sp-lg); overflow-y: auto;
  flex-direction: column; gap: var(--sp-xs);
  border-top: 1px solid rgba(245,200,66,.15);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 1.05rem; font-weight: 600; color: var(--clr-text);
  padding: 13px var(--sp-md); border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(245,200,66,.08);
  transition: color var(--tr-fast), background var(--tr-fast);
}
.mobile-nav a:hover { color: var(--clr-gold); background: var(--clr-gold-glow2); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero { position: relative; padding-block: var(--sp-3xl) var(--sp-2xl); overflow: hidden; background: var(--clr-bg); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/assets/images/paradiseclub77-game.webp');
  background-size: cover; background-position: center right; opacity: .1;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--clr-bg) 40%, transparent 100%);
}
#hero::before {
  content: ''; position: absolute; top: -120px; left: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-xs);
  background: var(--clr-gold-glow); border: 1px solid rgba(245,200,66,.35);
  color: var(--clr-gold); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: var(--sp-lg);
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--clr-gold);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.5); }
}

#hero h1 { font-size: clamp(2rem, 7vw, 3.4rem); font-weight: 900; letter-spacing: -.5px; margin-bottom: var(--sp-lg); line-height: 1.15; }
#hero h1 .accent { color: var(--clr-gold); text-shadow: 0 0 30px rgba(245,200,66,.4); }

.hero-description { font-size: clamp(.95rem, 2.5vw, 1.1rem); color: var(--clr-text-muted); max-width: 580px; margin-bottom: var(--sp-xl); line-height: 1.8; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }

.hero-stats { display: flex; gap: var(--sp-xl); margin-top: var(--sp-xl); flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .label { font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: var(--clr-text-faint); }
.hero-stat .value { font-size: 1.15rem; font-weight: 700; color: var(--clr-gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-size: .9rem; font-weight: 700; padding: 12px 24px;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  transition: background var(--tr-base), color var(--tr-base), box-shadow var(--tr-base), transform var(--tr-fast), border-color var(--tr-base);
  letter-spacing: .02em; min-height: 44px; cursor: pointer; white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: 3px; }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-amber-dark));
  color: #0a0a0f; border-color: var(--clr-gold); font-weight: 800;
}
.btn-primary:hover { box-shadow: var(--shadow-glow); color: #0a0a0f; filter: brightness(1.1); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--clr-gold); border-color: rgba(245,200,66,.45); }
.btn-outline:hover { background: var(--clr-gold-glow); color: var(--clr-gold-light); border-color: var(--clr-gold); }

.btn-ghost { background: var(--clr-surface); color: var(--clr-text-muted); border-color: var(--clr-border); }
.btn-ghost:hover { background: var(--clr-surface-alt); color: var(--clr-white); border-color: rgba(245,200,66,.25); }

.btn-sm { font-size: .82rem; padding: 8px 18px; min-height: 36px; }
.btn-lg { font-size: 1rem; padding: 15px 32px; min-height: 52px; }
.btn-block { width: 100%; }

/* ============================================================
   INFO CARD
   ============================================================ */
.info-card {
  background: var(--clr-surface); border: 1px solid rgba(245,200,66,.15);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(245,200,66,.05);
}
.info-card-header {
  background: linear-gradient(135deg, #1c1430, var(--clr-surface));
  padding: var(--sp-lg); display: flex; align-items: center; gap: var(--sp-lg);
  border-bottom: 1px solid rgba(245,200,66,.12);
}
.info-card-logo {
  width: 80px; height: 80px; border-radius: var(--radius-lg); object-fit: cover;
  border: 2px solid var(--clr-gold); box-shadow: 0 0 20px rgba(245,200,66,.35); flex-shrink: 0;
}
.info-card-name h3 { font-size: 1.3rem; margin-bottom: 4px; }
.info-card-name .badge {
  display: inline-block; background: var(--clr-gold-glow); color: var(--clr-gold);
  font-size: .72rem; font-weight: 700; padding: 2px 8px;
  border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .05em;
  border: 1px solid rgba(245,200,66,.3);
}
.info-card-body { padding: var(--sp-lg); }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid rgba(245,200,66,.08); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 10px var(--sp-sm); font-size: .88rem; vertical-align: top; }
.info-table td:first-child { color: var(--clr-text-muted); font-weight: 600; width: 40%; white-space: nowrap; }
.info-table td:last-child { color: var(--clr-text); font-weight: 500; }

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.toc-card { background: var(--clr-surface); border: 1px solid rgba(245,200,66,.15); border-radius: var(--radius-lg); overflow: hidden; }
.toc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-md) var(--sp-lg);
  background: linear-gradient(90deg, #1c1430, var(--clr-surface-alt));
  border-bottom: 1px solid rgba(245,200,66,.1);
  cursor: pointer; user-select: none;
}
.toc-header h3 { font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: var(--sp-sm); color: var(--clr-gold); }
.toc-toggle-icon { transition: transform var(--tr-base); flex-shrink: 0; color: var(--clr-gold); }
.toc-card.is-open .toc-toggle-icon { transform: rotate(180deg); }
.toc-body { display: none; padding: var(--sp-md) var(--sp-lg); }
.toc-card.is-open .toc-body { display: block; }
.toc-list { display: grid; gap: 2px; }
.toc-list a {
  display: flex; align-items: center; gap: var(--sp-sm);
  padding: 8px var(--sp-sm); border-radius: var(--radius-sm);
  font-size: .87rem; color: var(--clr-text-muted);
  transition: color var(--tr-fast), background var(--tr-fast);
}
.toc-list a::before {
  content: ''; display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--clr-text-faint); flex-shrink: 0;
  transition: background var(--tr-fast);
}
.toc-list a:hover, .toc-list a:focus-visible { color: var(--clr-gold); background: var(--clr-gold-glow2); }
.toc-list a:hover::before { background: var(--clr-gold); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-md); }
.feature-card {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: var(--sp-lg);
  transition: border-color var(--tr-base), box-shadow var(--tr-base), transform var(--tr-base);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-amber), transparent);
  opacity: 0; transition: opacity var(--tr-base);
}
.feature-card:hover { border-color: rgba(245,200,66,.35); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; background: var(--clr-gold-glow);
  border: 1px solid rgba(245,200,66,.25); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-md); color: var(--clr-gold);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1rem; margin-bottom: var(--sp-xs); }
.feature-card p { font-size: .875rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ============================================================
   STEP CARDS
   ============================================================ */
.steps-list { display: grid; gap: var(--sp-md); }
.step-card {
  display: flex; gap: var(--sp-md); background: var(--clr-surface);
  border: 1px solid var(--clr-border); border-radius: var(--radius-lg);
  padding: var(--sp-lg); transition: border-color var(--tr-base);
}
.step-card:hover { border-color: rgba(245,200,66,.25); }
.step-num {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-amber-dark));
  color: #0a0a0f; font-size: .9rem; font-weight: 900;
  border-radius: var(--radius-md); flex-shrink: 0;
}
.step-content h3 { font-size: 1rem; margin-bottom: 4px; }
.step-content p { font-size: .875rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ============================================================
   ALERT BOXES
   ============================================================ */
.alert { display: flex; gap: var(--sp-md); padding: var(--sp-md) var(--sp-lg); border-radius: var(--radius-md); border-left: 4px solid; margin-block: var(--sp-lg); }
.alert-icon { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.alert-text { font-size: .9rem; line-height: 1.65; }
.alert-text strong { display: block; margin-bottom: 4px; }
.alert--warning { background: var(--clr-warning-bg); border-color: var(--clr-warning-bdr); color: #e8d89a; }
.alert--warning .alert-icon { color: var(--clr-gold); }
.alert--info { background: var(--clr-info-bg); border-color: var(--clr-info-bdr); color: #a8a8e8; }
.alert--info .alert-icon { color: #8080ee; }
.alert--danger { background: #1a0a0a; border-color: var(--clr-danger); color: #f0a0a0; }
.alert--danger .alert-icon { color: var(--clr-danger); }
.alert--success { background: var(--clr-gold-glow2); border-color: var(--clr-gold); color: var(--clr-text); }
.alert--success .alert-icon { color: var(--clr-gold); }

/* ============================================================
   GAME CARDS
   ============================================================ */
.game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); gap: var(--sp-md); }
.game-card {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: var(--sp-lg) var(--sp-md); text-align: center;
  transition: border-color var(--tr-base), box-shadow var(--tr-base), transform var(--tr-base);
  position: relative; overflow: hidden;
}
.game-card:hover { border-color: rgba(245,200,66,.4); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.game-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--clr-gold-glow); border: 1px solid rgba(245,200,66,.25);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto; margin-bottom: var(--sp-sm); color: var(--clr-gold);
}
.game-card-icon svg { width: 26px; height: 26px; }
.game-card h3 { font-size: .88rem; margin-bottom: 4px; }
.game-card p { font-size: .75rem; color: var(--clr-text-muted); }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download-cta-box {
  background: linear-gradient(135deg, #1c1430, var(--clr-surface));
  border: 1px solid rgba(245,200,66,.3); border-radius: var(--radius-xl);
  padding: var(--sp-xl); text-align: center; position: relative; overflow: hidden;
}
.download-cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,200,66,.08) 0%, transparent 70%);
  pointer-events: none;
}
.download-cta-box h3 { font-size: 1.4rem; margin-bottom: var(--sp-sm); color: var(--clr-gold); }
.download-cta-box p { color: var(--clr-text-muted); margin-bottom: var(--sp-lg); font-size: .92rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: grid; gap: var(--sp-sm); }
.faq-item {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--tr-fast);
}
.faq-item.is-open { border-color: rgba(245,200,66,.35); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-md) var(--sp-lg); cursor: pointer; gap: var(--sp-md);
  font-weight: 600; font-size: .95rem; color: var(--clr-text);
  width: 100%; text-align: left; background: none; border: none;
  transition: color var(--tr-fast), background var(--tr-fast);
  min-height: 44px; border-radius: 0;
}
.faq-question:hover { color: var(--clr-gold); background: var(--clr-gold-glow2); }
.faq-question:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: -2px; }
.faq-chevron { width: 18px; height: 18px; color: var(--clr-text-muted); flex-shrink: 0; transition: transform var(--tr-base); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); color: var(--clr-gold); }
.faq-answer { display: none; padding: 0 var(--sp-lg) var(--sp-md); font-size: .88rem; color: var(--clr-text-muted); line-height: 1.75; border-top: 1px solid rgba(245,200,66,.08); }
.faq-answer p { padding-top: var(--sp-md); }
.faq-item.is-open .faq-answer { display: block; }

/* ============================================================
   RESPONSIBLE GAMING
   ============================================================ */
.rg-notice { background: linear-gradient(135deg, #140e20, #0f0a18); border: 1px solid rgba(245,200,66,.2); border-radius: var(--radius-xl); padding: var(--sp-xl); }
.rg-notice-header { display: flex; align-items: center; gap: var(--sp-md); margin-bottom: var(--sp-lg); }
.rg-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: rgba(245,200,66,.1); border: 1px solid rgba(245,200,66,.25); display: flex; align-items: center; justify-content: center; color: var(--clr-gold); flex-shrink: 0; }
.rg-icon svg { width: 26px; height: 26px; }
.rg-notice h2 { font-size: 1.25rem; }
.rg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-md); }
.rg-point { display: flex; gap: var(--sp-sm); font-size: .875rem; color: var(--clr-text-muted); line-height: 1.65; }
.rg-point::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--clr-gold); flex-shrink: 0; margin-top: .55em; }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer-box { background: #0a0a14; border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: var(--sp-lg); font-size: .82rem; color: var(--clr-text-faint); line-height: 1.75; }
.disclaimer-box strong { color: var(--clr-text-muted); }

/* ============================================================
   SECURITY
   ============================================================ */
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-md); }
.security-item { display: flex; gap: var(--sp-md); background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: var(--sp-md); align-items: flex-start; transition: border-color var(--tr-fast); }
.security-item:hover { border-color: rgba(245,200,66,.2); }
.security-item-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--clr-gold-glow2); border: 1px solid rgba(245,200,66,.15); display: flex; align-items: center; justify-content: center; color: var(--clr-gold); flex-shrink: 0; }
.security-item-icon svg { width: 18px; height: 18px; }
.security-item-text h4 { font-size: .9rem; margin-bottom: 2px; }
.security-item-text p { font-size: .8rem; color: var(--clr-text-muted); line-height: 1.55; }

/* ============================================================
   PROSE
   ============================================================ */
.prose h3 { font-size: 1.05rem; color: var(--clr-gold); margin-top: var(--sp-lg); margin-bottom: var(--sp-sm); }
.prose p { font-size: .93rem; color: var(--clr-text-muted); line-height: 1.8; margin-bottom: var(--sp-md); }
.prose ul { list-style: none; margin-bottom: var(--sp-md); display: grid; gap: 6px; }
.prose ul li { font-size: .9rem; color: var(--clr-text-muted); padding-left: var(--sp-md); position: relative; line-height: 1.65; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--clr-gold); }

.process-table { width: 100%; border-collapse: collapse; margin-block: var(--sp-lg); font-size: .88rem; }
.process-table th { background: linear-gradient(90deg, #1c1430, var(--clr-surface-alt)); color: var(--clr-gold); font-weight: 700; padding: 10px var(--sp-md); text-align: left; border-bottom: 2px solid rgba(245,200,66,.25); }
.process-table td { padding: 10px var(--sp-md); border-bottom: 1px solid rgba(245,200,66,.06); color: var(--clr-text); vertical-align: top; }
.process-table tr:last-child td { border-bottom: none; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: #08080f; border-top: 1px solid rgba(245,200,66,.12); padding-top: var(--sp-2xl); }
.footer-top { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: var(--sp-2xl); padding-bottom: var(--sp-2xl); border-bottom: 1px solid rgba(245,200,66,.08); }
.footer-brand .logo-text { font-size: 1.2rem; margin-bottom: var(--sp-md); display: block; }
.footer-desc { font-size: .83rem; color: var(--clr-text-faint); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: .85rem; font-weight: 700; color: var(--clr-gold); text-transform: uppercase; letter-spacing: .07em; margin-bottom: var(--sp-md); }
.footer-col ul { display: grid; gap: var(--sp-xs); }
.footer-col a { font-size: .85rem; color: var(--clr-text-faint); transition: color var(--tr-fast); }
.footer-col a:hover { color: var(--clr-gold); }
.footer-bottom { padding-block: var(--sp-lg); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-sm); }
.footer-copy { font-size: .8rem; color: var(--clr-text-faint); }
.footer-legal { display: flex; gap: var(--sp-md); }
.footer-legal a { font-size: .8rem; color: var(--clr-text-faint); }
.footer-legal a:hover { color: var(--clr-gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 58px; }
  .site-nav .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
  .section { padding-block: var(--sp-xl); }
  .hero-stats { gap: var(--sp-lg); }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .info-card-header { flex-direction: column; text-align: center; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .process-table th, .process-table td { padding: 8px; font-size: .8rem; }
}
@media (max-width: 360px) {
  .container { padding-inline: 12px; }
  #hero { padding-block: var(--sp-2xl) var(--sp-xl); }
  #hero h1 { font-size: 1.75rem; }
}
@media (min-width: 1024px) {
  .toc-card.is-open .toc-body { display: block; }
  .toc-toggle-icon { display: none; }
  .toc-body { display: block !important; }
  .toc-header { cursor: default; }
  .toc-list { grid-template-columns: repeat(2, 1fr); column-gap: var(--sp-lg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-sm  { margin-top: var(--sp-sm); }
.mt-md  { margin-top: var(--sp-md); }
.mt-lg  { margin-top: var(--sp-lg); }
.mt-xl  { margin-top: var(--sp-xl); }
.mb-md  { margin-bottom: var(--sp-md); }
.mb-lg  { margin-bottom: var(--sp-lg); }
.mb-xl  { margin-bottom: var(--sp-xl); }
.gap-md { gap: var(--sp-md); }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }

.page-hero { padding-block: var(--sp-2xl); background: linear-gradient(135deg, #0f0d1a, var(--clr-bg-alt)); border-bottom: 1px solid rgba(245,200,66,.12); }
.page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); margin-bottom: var(--sp-sm); color: var(--clr-gold); }
.page-hero p { color: var(--clr-text-muted); font-size: .95rem; }

.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--clr-text-faint); margin-bottom: var(--sp-md); }
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb span { color: var(--clr-text-faint); }

.gold-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,200,66,.4), transparent); margin-block: var(--sp-xl); }

/* ============================================================
   FULL LOGO IN HEADER (no text)
   ============================================================ */
.logo-img-full {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(245,200,66,.5));
  transition: filter var(--tr-base), transform var(--tr-base);
}
.site-logo:hover .logo-img-full {
  filter: drop-shadow(0 0 16px rgba(245,200,66,.8));
  transform: scale(1.03);
}

/* ============================================================
   REGISTRATION FORM FIELD GUIDE
   ============================================================ */
.reg-form-guide {
  background: var(--clr-surface);
  border: 1px solid rgba(245,200,66,.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--sp-xl);
  box-shadow: 0 0 30px rgba(245,200,66,.06);
}

.reg-form-title {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-lg);
  background: linear-gradient(90deg, #1c1430, var(--clr-surface-alt));
  border-bottom: 1px solid rgba(245,200,66,.15);
  font-size: 1rem;
  color: var(--clr-gold);
}

.reg-field-card {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid rgba(245,200,66,.07);
  align-items: flex-start;
  transition: background var(--tr-fast);
}
.reg-field-card:last-child { border-bottom: none; }
.reg-field-card:hover { background: rgba(245,200,66,.03); }

.reg-field-card--submit {
  background: linear-gradient(90deg, rgba(245,200,66,.06), transparent);
}
.reg-field-card--checkbox {
  background: rgba(245,200,66,.03);
}

.reg-field-icon {
  font-size: 1.6rem;
  min-width: 42px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.reg-field-info h4 {
  font-size: .97rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.reg-field-info p {
  font-size: .875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.reg-required {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #0a0a0f;
  background: var(--clr-gold);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

.reg-optional {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--clr-text-muted);
  background: var(--clr-surface-alt);
  border: 1px solid var(--clr-border);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

@media (max-width: 480px) {
  .reg-field-card { flex-direction: row; gap: var(--sp-sm); padding: var(--sp-md); }
  .reg-field-icon { font-size: 1.3rem; min-width: 32px; }
  .logo-img-full { height: 40px; }
}
