/* britbreezegames.com — British breeze social gaming platform
   Palette: deep sea green / slate teal / warm gold / soft mint
   ---------------------------------------------------------- */

:root {
  --bg: #0a2a2b;
  --bg-2: #0f3d3e;
  --surface: #134344;
  --surface-2: #1b5253;
  --line: rgba(168, 230, 207, 0.14);
  --text: #eaf6f1;
  --text-dim: #9fc4bc;
  --text-mute: #6f958f;
  --primary: #1b6e6a;
  --primary-2: #248a85;
  --accent: #e8c46a;
  --accent-2: #f3d98a;
  --mint: #a8e6cf;
  --success: #4ec9a0;
  --warning: #e8c46a;
  --error: #e5736b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.25);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", "Georgia", serif;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(232, 196, 106, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(168, 230, 207, 0.06), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  padding: 6px 14px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(168, 230, 207, 0.04);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text-dim); }
.lead { font-size: 1.15rem; color: var(--text-dim); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #2a2410; box-shadow: 0 10px 30px rgba(232, 196, 106, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(232, 196, 106, 0.35); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255, 255, 255, 0.03); }
.btn-ghost:hover { background: rgba(168, 230, 207, 0.08); border-color: var(--mint); }
.btn-mint { background: linear-gradient(135deg, var(--primary-2), var(--mint)); color: #06201f; }
.btn-mint:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(168, 230, 207, 0.25); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 42, 43, 0.72);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { background: rgba(10, 42, 43, 0.92); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 600; font-size: 1.25rem; letter-spacing: -0.01em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: url("images/icon.png") center / cover no-repeat;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  flex: 0 0 38px;
}
.brand-mark svg { display: none; }
.brand span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a { padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--text-dim); transition: color 0.2s, background 0.2s; }
.nav a:hover { color: var(--text); background: rgba(168, 230, 207, 0.06); }
.nav a.active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.chips-pill { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(232, 196, 106, 0.1); border: 1px solid rgba(232, 196, 106, 0.25); font-weight: 600; font-size: 14px; color: var(--accent); }
.chips-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); place-items: center; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; transition: 0.3s; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); transition: 0.3s; }
.menu-toggle span::before { top: -6px; } .menu-toggle span::after { top: 6px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 90px 0 70px; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 42, 43, 0.96) 0%, rgba(10, 42, 43, 0.78) 52%, rgba(10, 42, 43, 0.52) 100%),
    url("images/bg.png") center / cover no-repeat;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 { margin: 22px 0 18px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead { margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--mint); }
.hero-stat .lbl { font-size: 13px; color: var(--text-mute); letter-spacing: 0.04em; }

.hero-visual { position: relative; }
.hero-card {
  border-radius: 22px; padding: 28px; background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 200px at 80% 0%, rgba(232, 196, 106, 0.12), transparent 60%); }
.hero-card h3 { margin-bottom: 6px; }
.float-badge { position: absolute; padding: 10px 16px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; animation: floaty 5s ease-in-out infinite; }
.float-badge.b1 { top: -18px; right: -10px; }
.float-badge.b2 { bottom: -18px; left: -16px; animation-delay: 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Games grid ---------- */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.game-card {
  border-radius: 20px; overflow: hidden; background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  display: flex; flex-direction: column;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(168, 230, 207, 0.3); }
.game-thumb { height: 180px; position: relative; display: grid; place-items: center; overflow: hidden; }
.game-thumb.slots { background: linear-gradient(135deg, #1b5253, #0f3d3e); }
.game-thumb.blackjack { background: linear-gradient(135deg, #14502f, #0a2a2b); }
.game-thumb.roulette { background: linear-gradient(135deg, #5a1a1a, #2a0f0f); }
.game-thumb .emoji-art { font-size: 4rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4)); transition: transform 0.4s ease; }
.game-card:hover .emoji-art { transform: scale(1.1) rotate(-3deg); }
.game-tag { position: absolute; top: 14px; left: 14px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; padding: 5px 10px; border-radius: 6px; background: rgba(0,0,0,0.35); color: var(--mint); }
.game-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.game-body h3 { margin-bottom: 8px; }
.game-body p { font-size: 14.5px; margin-bottom: 18px; flex: 1; }
.game-meta { display: flex; gap: 16px; margin-bottom: 18px; font-size: 13px; color: var(--text-mute); }
.game-meta span { display: flex; align-items: center; gap: 6px; }

/* ---------- Advantages ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adv-card { padding: 30px; border-radius: 18px; background: rgba(168, 230, 207, 0.03); border: 1px solid var(--line); transition: 0.3s; }
.adv-card:hover { background: rgba(168, 230, 207, 0.06); transform: translateY(-4px); }
.adv-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--primary-2)); margin-bottom: 18px; font-size: 1.5rem; }
.adv-card h3 { margin-bottom: 8px; }
.adv-card p { font-size: 14.5px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: 60px; border-radius: 26px; overflow: hidden; background: linear-gradient(135deg, var(--bg-2), var(--primary)); border: 1px solid var(--line); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 50% 0%, rgba(232, 196, 106, 0.18), transparent 60%); }
.cta-band h2 { margin-bottom: 14px; position: relative; }
.cta-band p { max-width: 56ch; margin: 0 auto 26px; position: relative; }
.cta-band .hero-cta { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #07201f; padding: 60px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; max-width: 34ch; }
.footer-contact {
  display: grid; gap: 8px; margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line); color: var(--text-dim);
  font-size: 13.5px; line-height: 1.55; font-style: normal;
}
.footer-contact div { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact .contact-symbol { color: var(--accent); flex: 0 0 18px; }
.footer-col h4 { font-family: var(--font); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 700; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14.5px; color: var(--text-dim); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--mint); }
.footer-disclaimer { border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: rgba(0,0,0,0.2); margin-bottom: 28px; }
.footer-disclaimer p { font-size: 13px; color: var(--text-mute); }
.footer-disclaimer .help-links { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; }
.footer-disclaimer .help-links a { color: var(--mint); font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-mute); flex-wrap: wrap; gap: 12px; }
.footer-bottom .age-mark { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 8px; font-weight: 700; color: var(--accent); }

/* ---------- Age modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(4, 16, 16, 0.82); backdrop-filter: blur(8px); display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal-card { max-width: 460px; width: 100%; border-radius: 22px; background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 38px; transform: translateY(20px) scale(0.97); transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2); text-align: center; }
.modal-overlay.show .modal-card { transform: translateY(0) scale(1); }
.modal-card .age-badge { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; margin: 0 auto 20px; font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: #2a2410; box-shadow: 0 10px 30px rgba(232, 196, 106, 0.3); }
.modal-card h2 { margin-bottom: 12px; }
.modal-card p { font-size: 14.5px; margin-bottom: 24px; }
.age-check { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 22px; cursor: pointer; padding: 12px; border-radius: 12px; border: 1px solid var(--line); transition: background 0.2s; }
.age-check:hover { background: rgba(168, 230, 207, 0.05); }
.age-check input { width: 22px; height: 22px; accent-color: var(--accent); cursor: pointer; }
.age-check label { font-size: 14.5px; cursor: pointer; text-align: left; flex: 1; }
.modal-card .btn:disabled { opacity: 0.4; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 520px; margin: 0 auto; z-index: 90; border-radius: 18px; background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 22px; transform: translateY(140%); transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { margin-bottom: 8px; font-size: 1.05rem; }
.cookie-banner p { font-size: 13.5px; margin-bottom: 16px; }
.cookie-banner p a { color: var(--mint); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; }

/* ---------- Page hero ---------- */
.page-hero {
  padding: 60px 0 30px; border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(10, 42, 43, 0.82), rgba(10, 42, 43, 0.92)),
    url("images/bg.png") center / cover no-repeat;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 64ch; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-mute); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb span { opacity: 0.5; }

/* ---------- Prose / content ---------- */
.prose { max-width: 760px; }
.prose h2 { margin: 38px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 26px 0 10px; color: var(--mint); }
.prose p { margin-bottom: 16px; font-size: 1.02rem; }
.prose ul { margin: 0 0 18px; padding-left: 0; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--text-dim); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.prose a { color: var(--mint); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }

.content-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.toc { position: sticky; top: 90px; border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: rgba(168, 230, 207, 0.03); }
.toc h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.toc ul li { margin-bottom: 8px; }
.toc ul li a { font-size: 13.5px; color: var(--text-dim); transition: color 0.2s; }
.toc ul li a:hover { color: var(--mint); }

/* ---------- FAQ accordion ---------- */
.faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; overflow: hidden; background: rgba(168, 230, 207, 0.03); transition: background 0.2s; }
.faq-item.open { background: rgba(168, 230, 207, 0.06); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; text-align: left; font-weight: 600; font-size: 1.02rem; color: var(--text); }
.faq-q .chev { transition: transform 0.3s; color: var(--accent); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--text-dim); font-size: 0.98rem; }

/* ---------- Cards / feature rows ---------- */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 28px; border-radius: 18px; border: 1px solid var(--line); background: rgba(168, 230, 207, 0.03); }
.feature-card .num { font-family: var(--display); font-size: 2.4rem; font-weight: 600; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; }

.step-list { counter-reset: step; }
.step-item { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step-item:last-child { border-bottom: none; }
.step-item .step-num { counter-increment: step; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-2)); display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--mint); box-shadow: var(--shadow-sm); }
.step-item .step-num::before { content: counter(step); }
.step-item h3 { margin-bottom: 6px; }
.step-item p { font-size: 15px; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2); color: var(--text); font-family: inherit; font-size: 15px; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--mint); box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.12); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-mute); margin-top: 14px; }
.form-success { display: none; padding: 18px; border-radius: 12px; background: rgba(78, 201, 160, 0.12); border: 1px solid rgba(78, 201, 160, 0.3); color: var(--success); margin-top: 18px; }
.form-success.show { display: block; animation: pop 0.4s ease; }
@keyframes pop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

.contact-info-card { padding: 28px; border-radius: 18px; border: 1px solid var(--line); background: rgba(168, 230, 207, 0.03); }
.contact-info-card h3 { margin-bottom: 16px; }
.contact-info-card .info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-info-card .info-row:last-child { border-bottom: none; }
.contact-info-card .info-row .ico { color: var(--accent); }
.contact-info-card .info-row .lbl { font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-card .info-row .val { font-size: 15px; color: var(--text); }

/* ---------- Help center ---------- */
.help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.help-card { padding: 26px; border-radius: 16px; border: 1px solid var(--line); background: rgba(168, 230, 207, 0.03); transition: 0.3s; }
.help-card:hover { transform: translateY(-3px); border-color: rgba(168, 230, 207, 0.25); background: rgba(168, 230, 207, 0.06); }
.help-card h3 { margin-bottom: 8px; }
.help-card p { font-size: 14px; margin-bottom: 14px; }
.help-card a { color: var(--accent); font-weight: 600; font-size: 14px; }
.help-card a:hover { text-decoration: underline; }

/* ---------- Community ---------- */
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.community-card { padding: 28px; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(160deg, var(--surface), var(--bg-2)); text-align: center; }
.community-card .avatar { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--bg); }
.community-card h3 { margin-bottom: 6px; }
.community-card .role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.community-card p { font-size: 14px; }

.leaderboard { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.leader-row { display: grid; grid-template-columns: 60px 1fr auto; align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--line); transition: background 0.2s; }
.leader-row:last-child { border-bottom: none; }
.leader-row:hover { background: rgba(168, 230, 207, 0.04); }
.leader-rank { font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--text-mute); }
.leader-row.top .leader-rank { color: var(--accent); }
.leader-name { font-weight: 600; }
.leader-name .meta { display: block; font-size: 12px; color: var(--text-mute); font-weight: 400; }
.leader-score { color: var(--mint); font-weight: 700; }

/* ---------- Game pages ---------- */
.game-shell { max-width: 980px; margin: 0 auto; }
.game-board { border-radius: 24px; border: 1px solid var(--line); background: linear-gradient(165deg, var(--surface), var(--bg-2)); padding: 36px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.game-board::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 280px at 50% -10%, rgba(232, 196, 106, 0.08), transparent 60%); pointer-events: none; }
.game-hud { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 14px; position: relative; }
.hud-balance { display: flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px; background: rgba(232, 196, 106, 0.1); border: 1px solid rgba(232, 196, 106, 0.25); font-weight: 700; color: var(--accent); }
.hud-balance .chip { width: 22px; height: 22px; border-radius: 50%; background: radial-gradient(circle, var(--accent), var(--accent-2)); border: 2px dashed rgba(0,0,0,0.25); }
.hud-stats { display: flex; gap: 18px; font-size: 13px; color: var(--text-mute); }
.hud-stats span b { color: var(--text); }
.game-controls { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; position: relative; }
.game-message { text-align: center; padding: 14px; border-radius: 12px; margin-top: 20px; font-weight: 600; min-height: 50px; display: grid; place-items: center; position: relative; transition: 0.3s; }
.game-message.win { background: rgba(78, 201, 160, 0.12); color: var(--success); border: 1px solid rgba(78, 201, 160, 0.3); }
.game-message.lose { background: rgba(229, 115, 107, 0.1); color: var(--error); border: 1px solid rgba(229, 115, 107, 0.25); }
.game-message.push { background: rgba(232, 196, 106, 0.1); color: var(--accent); border: 1px solid rgba(232, 196, 106, 0.25); }
.game-message.idle { color: var(--text-mute); }

/* Slots */
.slots-frame { background: #0a1f1f; border-radius: 18px; padding: 30px; border: 2px solid var(--line); position: relative; }
.slots-reels { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; }
.reel { width: 110px; height: 130px; background: linear-gradient(180deg, #06201f, #0a2a2b); border-radius: 14px; border: 2px solid var(--line); overflow: hidden; position: relative; box-shadow: inset 0 8px 20px rgba(0,0,0,0.5); }
.reel::before, .reel::after { content: ""; position: absolute; left: 0; right: 0; height: 30px; z-index: 2; pointer-events: none; }
.reel::before { top: 0; background: linear-gradient(180deg, rgba(0,0,0,0.6), transparent); }
.reel::after { bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent); }
.reel-strip { display: flex; flex-direction: column; transition: transform 0.1s linear; }
.reel-symbol { height: 130px; display: grid; place-items: center; font-size: 3.4rem; flex-shrink: 0; }
.slots-payline { position: absolute; left: 30px; right: 30px; top: 50%; transform: translateY(-50%); height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity 0.3s; z-index: 3; }
.slots-payline.show { opacity: 0.7; }
.bet-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.bet-btn { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: rgba(168, 230, 207, 0.05); font-size: 1.3rem; font-weight: 700; color: var(--text); transition: 0.2s; }
.bet-btn:hover { background: rgba(168, 230, 207, 0.12); border-color: var(--mint); }
.bet-display { font-family: var(--display); font-size: 1.5rem; font-weight: 600; min-width: 90px; text-align: center; }
.bet-display .lbl { display: block; font-family: var(--font); font-size: 11px; color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; }

/* Blackjack */
.bj-table { background: radial-gradient(ellipse at center, #1a5a3a, #0a2a1f); border-radius: 20px; padding: 30px; border: 2px solid rgba(168, 230, 207, 0.15); position: relative; min-height: 360px; }
.bj-zone { margin-bottom: 22px; }
.bj-zone-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mint); font-weight: 700; margin-bottom: 12px; }
.bj-hand { display: flex; gap: 12px; min-height: 130px; align-items: center; flex-wrap: wrap; }
.bj-cards { display: flex; gap: 10px; flex-wrap: wrap; }
.playing-card { width: 84px; height: 118px; border-radius: 10px; background: #fafafa; color: #1a1a1a; padding: 8px; display: flex; flex-direction: column; justify-content: space-between; font-family: var(--display); font-weight: 700; box-shadow: 0 8px 20px rgba(0,0,0,0.4); position: relative; animation: dealCard 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1); }
@keyframes dealCard { from { transform: translateY(-40px) rotate(-8deg); opacity: 0; } to { transform: translateY(0) rotate(0); opacity: 1; } }
.playing-card.red { color: #c0392b; }
.playing-card .corner { font-size: 14px; line-height: 1; }
.playing-card .corner.br { align-self: flex-end; transform: rotate(180deg); }
.playing-card .center { font-size: 2rem; align-self: center; }
.card-back { width: 84px; height: 118px; border-radius: 10px; background: repeating-linear-gradient(45deg, #1b5253, #1b5253 8px, #134344 8px, #134344 16px); border: 2px solid var(--accent); box-shadow: 0 8px 20px rgba(0,0,0,0.4); animation: dealCard 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1); }
.bj-score { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(0,0,0,0.3); border: 1px solid var(--line); font-size: 14px; font-weight: 700; color: var(--mint); }

/* Roulette */
.rou-table { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: center; }
.rou-wheel-wrap { position: relative; display: grid; place-items: center; }
.rou-wheel { width: 280px; height: 280px; border-radius: 50%; position: relative; box-shadow: 0 0 0 8px #2a1a0a, 0 0 0 12px var(--accent), var(--shadow); transition: transform 4s cubic-bezier(0.17, 0.67, 0.21, 1); }
.rou-pointer { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 20px solid var(--accent); z-index: 5; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4)); }
.rou-ball { position: absolute; top: 50%; left: 50%; width: 16px; height: 16px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, #ccc); box-shadow: 0 2px 6px rgba(0,0,0,0.5); transform: translate(-50%, -50%); transition: all 4s cubic-bezier(0.17, 0.67, 0.21, 1); z-index: 4; }
.rou-bets { display: grid; gap: 10px; }
.rou-bet-group h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.rou-bet-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.bet-chip { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: rgba(168, 230, 207, 0.05); font-size: 13.5px; font-weight: 600; color: var(--text-dim); transition: 0.2s; }
.bet-chip:hover { border-color: var(--mint); color: var(--text); background: rgba(168, 230, 207, 0.1); }
.bet-chip.selected { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #2a2410; border-color: transparent; }
.rou-result { text-align: center; margin-top: 18px; font-family: var(--display); font-size: 1.4rem; font-weight: 600; min-height: 40px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .games-grid, .adv-grid, .feature-row, .community-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .rou-table { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav, .header-actions .chips-pill { display: none; }
  .menu-toggle { display: grid; }
  .nav.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 16px; background: var(--bg-2); border-bottom: 1px solid var(--line); gap: 4px; }
  .nav.open a { padding: 12px 16px; }
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .reel { width: 84px; height: 110px; }
  .reel-symbol { height: 110px; font-size: 2.6rem; }
  .rou-wheel { width: 220px; height: 220px; }
  .playing-card, .card-back { width: 68px; height: 96px; }
}
