/* ============================================================
   LOTUS365 — GLOBAL STYLESHEET
   style.css
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
    /* Primary Brand */
    --color-primary:        #177358;
    --color-primary-dark:   #0F5440;
    --color-primary-deep:   #0A3D2E;

    /* Backgrounds */
    --color-background:     #0D2A20;
    --color-background-dark:#081C15;

    /* Surfaces */
    --color-surface:        #112E23;
    --color-surface-light:  #183D2F;

    /* Accent — Lime Green */
    --color-accent:         #B8D63A;
    --color-accent-light:   #D2E85B;
    --color-accent-dark:    #91B21F;

    /* Text */
    --color-white:          #FFFFFF;
    --color-text:           #FFFFFF;
    --color-text-secondary: #D0DDDB;
    --color-text-muted:     #91A6A3;

    /* Borders */
    --border-dark:          rgba(255,255,255,0.10);
    --border-primary:       rgba(23,115,88,0.45);
    --border-accent:        rgba(184,214,58,0.35);

    /* Spacing */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   1.5rem;
    --space-lg:   2.5rem;
    --space-xl:   4rem;
    --space-xxl:  6rem;

    /* Typography */
    --font-base:  'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.7;

    /* Radius */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  12px;
    --radius-xl:  20px;

    /* Transitions */
    --transition: color 0.2s ease, background-color 0.2s ease,
                  border-color 0.2s ease, transform 0.2s ease,
                  box-shadow 0.2s ease;

    /* Container */
    --container-max: 1200px;
    --container-pad: 1.5rem;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::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);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-background-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font-base);
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-base);
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-white);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem;    font-weight: 600; }

p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    max-width: 72ch;
}

p:last-child { margin-bottom: 0; }

strong { color: var(--color-white); font-weight: 700; }

.text-accent   { color: var(--color-accent); }
.text-muted    { color: var(--color-text-muted); }
.text-white    { color: var(--color-white); }
.text-center   { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   ------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section {
    padding-block: var(--space-xl);
}

.section--alt {
    background-color: var(--color-background);
}

.section--surface {
    background-color: var(--color-surface);
}

.section--surface-light {
    background-color: var(--color-surface-light);
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.flex--wrap   { flex-wrap: wrap; }
.flex--center { justify-content: center; }
.flex--between{ justify-content: space-between; }

/* ------------------------------------------------------------
   5. SECTION HEADERS
   ------------------------------------------------------------ */
.section-header {
    margin-bottom: var(--space-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.section-header h2 {
    margin-bottom: var(--space-xs);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}

/* Primary — lime green */
.btn-primary {
    background: linear-gradient(180deg, var(--color-accent-light) 0%, var(--color-accent) 50%, var(--color-accent-dark) 100%);
    color: #041715;
    border-color: var(--color-accent-dark);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #e0f070 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
    color: #041715;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184,214,58,0.30);
}

/* Secondary — outlined */
.btn-secondary {
    background: transparent;
    color: var(--color-accent-light);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: #041715;
    transform: translateY(-1px);
}

/* Ghost */
.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
    border-color: var(--border-dark);
}

.btn-ghost:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem;
}

/* ------------------------------------------------------------
   7. HEADER & NAVIGATION
   ------------------------------------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-background-dark);
    border-bottom: 1px solid rgba(184,214,58,0.12);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--space-md);
}

/* Logo */
.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 48px;
    width: auto;
}

/* Fallback text logo if image not present */
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.logo-text span {
    color: var(--color-accent);
}

/* Primary nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-list a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
    color: var(--color-accent);
    background-color: rgba(184,214,58,0.07);
}

/* Dropdown */
.nav-item--dropdown {
    position: relative;
}

.nav-item--dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    /* padding-top creates invisible hover bridge so mouse can travel down */
    padding: 0.5rem;
    margin-top: 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    z-index: 100;
}

/* Invisible bridge between trigger and menu — prevents hover gap */
.nav-item--dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-item--dropdown.is-open .dropdown-menu,
.nav-item--dropdown:focus-within .dropdown-menu {
    display: block;
}


.dropdown-menu a {
    display: block;
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
    color: var(--color-accent);
    background: rgba(184,214,58,0.07);
}

/* Header CTA group */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle:hover span { background-color: var(--color-accent); }
.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 overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--color-background-dark);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-md) var(--container-pad) var(--space-lg);
    border-top: 1px solid var(--border-dark);
}

.mobile-nav.is-open { display: block; }

.mobile-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
}

.mobile-nav .nav-list a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-dark);
    border-radius: 0;
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--space-md);
}

.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ------------------------------------------------------------
   8. BREADCRUMBS
   ------------------------------------------------------------ */
.breadcrumb {
    padding-block: 0.85rem;
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--border-dark);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
}

.breadcrumb li {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: var(--border-dark);
}

.breadcrumb a {
    color: var(--color-text-muted);
    transition: var(--transition);
}

.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb [aria-current="page"] { color: var(--color-text-secondary); }

/* ------------------------------------------------------------
   9. HERO
   ------------------------------------------------------------ */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 30%, rgba(23,115,88,0.25) 0%, transparent 55%),
        radial-gradient(circle at 15% 80%, rgba(184,214,58,0.08) 0%, transparent 45%),
        var(--color-background-dark);
    padding-block: var(--space-xxl) var(--space-xl);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-content {}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    padding: 0.35rem 0.85rem;
    background: rgba(184,214,58,0.10);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero h1 .highlight {
    color: var(--color-accent);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 50ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    margin-bottom: var(--space-lg);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-dark);
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    background: var(--color-surface);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    text-align: center;
    max-width: 320px;
    width: 100%;
}

.hero-badge-icon {
    width: 64px;
    height: 64px;
    background: rgba(184,214,58,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
}

.hero-badge-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* ------------------------------------------------------------
   10. CARDS
   ------------------------------------------------------------ */
.card {
    background: var(--color-surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 12px 30px rgba(0,0,0,0.20);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(184,214,58,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.card p {
    font-size: 0.93rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: var(--space-sm);
    transition: var(--transition);
}

.card-link:hover { color: var(--color-accent-light); gap: 0.55rem; }
.card-link::after { content: '→'; }

/* Feature card with number */
.card--numbered {
    position: relative;
}

.card--numbered .card-num {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(184,214,58,0.12);
    line-height: 1;
    user-select: none;
}

/* Highlight card */
.card--highlight {
    background: linear-gradient(135deg, var(--color-primary-deep), var(--color-surface));
    border-color: var(--border-primary);
}

/* ------------------------------------------------------------
   11. INFO BOXES
   ------------------------------------------------------------ */
.info-box {
    background: var(--color-surface);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-block: var(--space-md);
}

.info-box--warning {
    border-left-color: #E6A817;
    background: rgba(230,168,23,0.07);
}

.info-box--caution {
    border-left-color: var(--color-accent);
    background: rgba(184,214,58,0.06);
}

.info-box p { margin-bottom: 0; }

.info-box-title {
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* ------------------------------------------------------------
   12. TABLES
   ------------------------------------------------------------ */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

thead {
    background: var(--color-surface-light);
}

th {
    padding: 0.9rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
    border-bottom: 1px solid var(--border-dark);
}

td {
    padding: 0.85rem 1rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: top;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ------------------------------------------------------------
   13. FAQ ACCORDION
   ------------------------------------------------------------ */
.faq-section {}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.is-open { border-color: var(--border-accent); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover { color: var(--color-accent); }

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.1rem;
    color: var(--color-text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}

.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { margin-bottom: 0.5rem; max-width: none; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------
   14. FORMS
   ------------------------------------------------------------ */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    background: #0A1F17;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: var(--color-white);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-control::placeholder { color: var(--color-text-muted); }

.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(184,214,58,0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-help {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-top: 0.35rem;
}

.form-card {
    background: var(--color-surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 480px;
    margin-inline: auto;
}

.form-card h2 {
    margin-bottom: var(--space-md);
}

/* ------------------------------------------------------------
   15. PAGE HERO (inner pages)
   ------------------------------------------------------------ */
.page-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(23,115,88,0.20) 0%, transparent 50%),
        var(--color-background-dark);
    padding-block: var(--space-xl);
    border-bottom: 1px solid var(--border-dark);
}

.page-hero h1 { margin-bottom: var(--space-xs); }
.page-hero .lead {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 60ch;
    margin-bottom: 0;
}

/* ------------------------------------------------------------
   16. PROS / CONS
   ------------------------------------------------------------ */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.pros, .cons {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border-top: 3px solid var(--color-accent);
}

.cons { border-top-color: rgba(255,255,255,0.25); }

.pros h3, .cons h3 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.check-list li {
    display: flex;
    gap: 0.6rem;
    padding-block: 0.4rem;
    font-size: 0.93rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.cross-list li::before {
    content: '✗';
    color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   17. STEPS / HOW IT WORKS
   ------------------------------------------------------------ */
.steps {
    display: grid;
    gap: var(--space-md);
    counter-reset: steps;
}

.step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--color-surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: var(--transition);
}

.step:hover { border-color: var(--border-accent); }

.step-num {
    width: 44px;
    height: 44px;
    background: rgba(184,214,58,0.12);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.step-content h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.step-content p  { font-size: 0.93rem; color: var(--color-text-muted); margin-bottom: 0; }

/* ------------------------------------------------------------
   18. SPORTS GRID
   ------------------------------------------------------------ */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-sm);
}

.sport-card {
    background: var(--color-surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-sm);
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.sport-card:hover {
    border-color: var(--border-accent);
    background: var(--color-surface-light);
}

.sport-emoji {
    font-size: 2rem;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.sport-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

/* ------------------------------------------------------------
   19. NOTICE / DISCLAIMER
   ------------------------------------------------------------ */
.disclaimer {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--space-xl);
}

.disclaimer strong { color: var(--color-text-secondary); }
.disclaimer p { max-width: none; margin-bottom: 0.35rem; }
.disclaimer p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------
   20. FOOTER
   ------------------------------------------------------------ */
.site-footer {
    background-color: var(--color-background-dark);
    border-top: 1px solid var(--border-dark);
    padding-top: var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-dark);
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
    text-decoration: none;
}

.footer-logo img { height: 40px; width: auto; }

.footer-tagline {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    max-width: 30ch;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--color-accent); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    padding-block: var(--space-md);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal-links a:hover { color: var(--color-accent); }

/* Responsible gaming notice */
.rg-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.rg-notice-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.1rem;
}

/* ------------------------------------------------------------
   21. AGE GATE / BADGE
   ------------------------------------------------------------ */
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.6rem;
}

.age-badge-num {
    font-size: 1rem;
    color: var(--color-white);
}

/* ------------------------------------------------------------
   22. UTILITIES
   ------------------------------------------------------------ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.divider {
    border: none;
    border-top: 1px solid var(--border-dark);
    margin-block: var(--space-lg);
}

.accent-line {
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin-bottom: var(--space-sm);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.badge--accent {
    background: rgba(184,214,58,0.15);
    color: var(--color-accent-light);
    border: 1px solid var(--border-accent);
}

.badge--muted {
    background: rgba(255,255,255,0.06);
    color: var(--color-text-muted);
    border: 1px solid var(--border-dark);
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ------------------------------------------------------------
   23. SCHEMA / STRUCTURED DATA
   (script[type="application/ld+json"] — hidden, not styled)
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   24. PRINT STYLES
   ------------------------------------------------------------ */
@media print {
    .site-header, .site-footer, .nav-toggle, .hero-actions { display: none; }
    body { background: white; color: black; }
    a { color: black; }
}
