/* ------------------------------
   Dark theme baseline
   - Defines colors, typography, spacing scale for consistent layout.
--------------------------------*/
:root {
    --bg: #0b0f1a;
    --bg-alt: #111829;
    --card: #151f33;
    --text: #e7ecf5;
    --muted: #9fb3d1;
    --accent: #6df1ff;
    --accent-2: #ff8a57;
    --border: #23314d;
    --radius: 16px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --max-width: 1200px;
}

/* Global resets */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout shell keeps all sections aligned */
.page-shell {
    max-width: calc(var(--max-width) + 64px);
    margin: 0 auto;
    padding: 16px 24px 48px;
}

/* ------------------------------
   Header + navigation
--------------------------------*/
.site-header {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 72px;
    height: auto;
}

.logo.small {
    width: 40px;
}

.brand-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-domain {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-tagline {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.primary-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--muted);
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--text);
    background: rgba(109, 241, 255, 0.12);
    outline: none;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: rgba(109, 241, 255, 0.08);
    border-color: var(--accent);
    outline: none;
}

.cta-group {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-align: center;
}

.btn.solid {
    background: linear-gradient(135deg, var(--accent), #4fc7ff);
    color: #03202c;
    box-shadow: 0 10px 30px rgba(109, 241, 255, 0.3);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border);
    color: var(--text);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    outline: none;
}

/* ------------------------------
   Breadcrumbs
--------------------------------*/
.breadcrumbs {
    margin: 18px 0 12px;
}

.breadcrumbs ol {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs a {
    color: var(--accent);
}

.breadcrumbs li::after {
    content: "/";
    margin: 0 6px;
    color: var(--border);
}

.breadcrumbs li:last-child::after {
    content: "";
}

/* ------------------------------
   Hero banner
--------------------------------*/
.hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-alt);
}

.hero-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    filter: saturate(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 15, 26, 0.8), rgba(17, 24, 41, 0.6));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.hero-cta-block {
    max-width: 640px;
    text-align: center;
    padding: 20px 24px;
    background: rgba(12, 18, 31, 0.7);
    border: 1px solid rgba(109, 241, 255, 0.25);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
}

h1, h2, h3 {
    margin: 8px 0;
    line-height: 1.3;
}

.lede {
    color: var(--muted);
    margin: 8px 0 14px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions.center {
    justify-content: center;
}

/* ------------------------------
   Section head helper
--------------------------------*/
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

/* ------------------------------
   Slots grid
--------------------------------*/
.slots {
    margin: 24px 0;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.slot-card {
    background: var(--card);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    display: block;
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.slot-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.slot-card:hover,
.slot-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
    border-color: var(--accent);
    outline: none;
}

/* ------------------------------
   Content blocks
--------------------------------*/
.content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.text-block,
.table-section,
.guide,
.bonuses,
.closing {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.text-block p,
.bonuses p {
    color: var(--text);
}

.text-block ul {
    padding-left: 20px;
}

/* ------------------------------
   Responsive table -> stacked cards on mobile
--------------------------------*/
.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text);
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

thead th {
    background: rgba(109, 241, 255, 0.08);
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Mobile card style */
@media (max-width: 768px) {
    .responsive-table thead {
        display: none;
    }
    .responsive-table tr {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 12px;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-bottom: 10px;
        background: var(--card);
    }
    .responsive-table td {
        border: none;
        padding: 0;
    }
    .responsive-table td::before {
        content: attr(data-label);
        display: block;
        color: var(--muted);
        font-size: 13px;
    }
}

/* ------------------------------
   Steps list and inline CTA
--------------------------------*/
.steps-list {
    margin: 0 0 12px;
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 8px;
}

.inline-cta {
    margin-top: 8px;
    padding: 16px;
    border: 1px dashed var(--accent);
    border-radius: 12px;
    background: rgba(109, 241, 255, 0.04);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.bonus-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.closing {
    text-align: center;
}

/* ------------------------------
   Footer with payment logos
--------------------------------*/
.site-footer {
    margin-top: 28px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    align-items: center;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-payments img {
    height: 30px;
    width: auto;
    padding: 6px 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom {
    margin-top: 14px;
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

/* ------------------------------
   Mobile locking & responsiveness tweaks
   - Locks horizontal scroll, keeps CTA centered.
--------------------------------*/
@media (max-width: 1024px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        text-align: left;
    }
    .primary-nav {
        display: none !important;
    }
    .menu-toggle {
        display: none;
    }
    .site-header {
        position: sticky;
    }
    .cta-group {
        justify-content: flex-end;
    }
    .logo {
        width: 86px;
    }
}

@media (max-width: 768px) {
    body[data-mobile-locked="true"] {
        overflow-x: hidden;
        overscroll-behavior: contain;
    }

    .page-shell {
        padding: 12px 16px 32px;
    }

    /* Preserve mobile banner natural height; container already rounds corners */
    .hero-image {
        height: auto;
    }

    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-cta-block {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

