/*
 * Roby Casino - Design System
 * Cyberpunk futuristic aesthetic with neon-on-dark visuals.
 * Fonts: Orbitron (headlines) + Rajdhani (body).
 * Mobile-first. Dark theme default with light theme via prefers-color-scheme.
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
    --header-height: 64px;

    --background: #0a0e1a;
    --foreground: #e8ecf4;
    --card: #121826;
    --card-foreground: #e8ecf4;
    --popover: #0f1420;
    --popover-foreground: #e8ecf4;
    --primary: #00f0ff;
    --primary-foreground: #0a0e1a;
    --secondary: #2a1f45;
    --secondary-foreground: #e8ecf4;
    --muted: #1e293b;
    --muted-foreground: #a8b5c8;
    --accent: #39ff14;
    --accent-foreground: #0a0e1a;
    --destructive: #ff385c;
    --destructive-foreground: #ffffff;
    --border: #2a3548;
    --input: #0f1420;
    --ring: #00f0ff;
}

@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
    }
}

/* Light theme overrides via prefers-color-scheme */
@media (prefers-color-scheme: light) {
    :root {
        --background: #f0f4f8;
        --foreground: #0a0e1a;
        --card: #ffffff;
        --card-foreground: #0a0e1a;
        --popover: #ffffff;
        --popover-foreground: #0a0e1a;
        --primary: #00708c;
        --primary-foreground: #ffffff;
        --secondary: #e8e0f5;
        --secondary-foreground: #1a1a2e;
        --muted: #e2e8f0;
        --muted-foreground: #334155;
        --accent: #1b800a;
        --accent-foreground: #ffffff;
        --destructive: #d32f2f;
        --destructive-foreground: #ffffff;
        --border: #cbd5e1;
        --input: #f1f5f9;
        --ring: #00708c;
    }

    .hero {
        background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 50%, #f0f4f8 100%);
    }

    .cta-banner {
        background: linear-gradient(135deg, #f0f4f8, #ffffff);
    }
}

/* ============================================
   RESET & OVERFLOW PREVENTION
   ============================================ */

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

img,
video,
iframe,
embed,
object,
svg {
    max-width: 100%;
    height: auto;
}

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre,
code,
.code-block,
[class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

p,
li,
td,
th {
    overflow-wrap: break-word;
}

a {
    overflow-wrap: break-word;
}

input,
textarea,
select {
    max-width: 100%;
}

section {
    overflow: clip;
}

/* ============================================
   BASE & TYPOGRAPHY
   Orbitron headlines, Rajdhani body text
   ============================================ */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

h1 {
    font-size: 28px;
    font-weight: 700;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

h4 {
    font-size: 18px;
    font-weight: 500;
}

p {
    margin: 0 0 16px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

ul, ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

img {
    display: block;
}

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
}

/* ============================================
   SKIP LINK
   ============================================ */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

.section {
    padding: 60px 0;
}

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

@media (min-width: 1024px) {
    .section {
        padding: 72px 0;
    }
}

.section-header {
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 48px;
    }
}

.section-title {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin: 0 0 16px;
}

.section-subtitle {
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 70ch;
    margin: 0;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--card);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 20px rgba(0, 240, 255, 0.05);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-brand {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .site-brand {
        font-size: 22px;
    }
}

/* ============================================
   MOBILE MENU DRAWER
   Hidden by default, slides in as fixed overlay
   ============================================ */

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    overflow-y: auto;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.nav-list li a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
}

.nav-list li a:hover,
.nav-list li a:focus {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.mobile-menu-toggle:hover {
    border-color: var(--primary);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Desktop: inline nav, hidden toggle */
@media (min-width: 1024px) {
    .primary-nav,
    .primary-nav.is-open {
        display: flex;
        position: static;
        background: transparent;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        padding: 0;
        overflow: visible;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: auto;
        margin-left: auto;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 28px;
    }

    .nav-list li a {
        min-height: auto;
        padding: 8px 0;
        font-size: 16px;
        border: none;
    }

    .nav-list li a:hover {
        color: var(--primary);
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    }

    .nav-cta {
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
    }

    .nav-cta .btn {
        width: auto;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 24px;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-out;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    filter: brightness(1.1);
    text-shadow: none;
}

.btn-secondary,
.btn-login {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover,
.btn-login:hover {
    background: rgba(0, 240, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
    text-shadow: none;
}

.btn-register {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.btn-register:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    filter: brightness(1.1);
    text-shadow: none;
}

.btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* ============================================
   HERO SECTIONS
   Full-bleed dark hero with model imagery
   ============================================ */

.hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0a0e1a 0%, #121826 50%, #0a0e1a 100%);
    overflow: clip;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 240, 255, 0.08), transparent 60%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 1;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__title {
    font-family: "Orbitron", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin: 0;
}

.hero__title .accent {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.hero__subtitle {
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 60ch;
    margin: 0;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero__micro {
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 4px 0 0;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hero__visual {
    position: relative;
    width: 100%;
}

.hero__visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0 64px;
    }

    .hero__inner {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }

    .hero__content {
        flex: 1;
    }

    .hero__visual {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 80px 0 64px;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__subtitle {
        font-size: 19px;
    }
}

/* ============================================
   INFO CARD GRID
   Responsive grid: 1 col mobile, 2 tablet, 3 desktop
   ============================================ */

.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .info-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.info-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    background: var(--card);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.info-card:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.12);
}

.info-card__image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 16px;
}

.info-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 28px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--muted);
}

.info-card__title {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--foreground);
    margin: 0 0 12px;
}

.info-card__text {
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   STAT BLOCK
   Large metric display with neon glow numbers
   ============================================ */

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-unit {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 16px;
    background: var(--card);
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.stat-unit:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.stat-number {
    display: block;
    font-family: "Orbitron", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
}

.stat-source {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 6px;
}

@media (min-width: 768px) {
    .stat-block {
        flex-direction: row;
        gap: 32px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* ============================================
   CTA BANNER
   Full-width section with gradient sweep
   ============================================ */

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0e1a, #121826);
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.06), rgba(57, 255, 20, 0.06));
    background-size: 200% 100%;
    animation: gradient-sweep 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-banner__title {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.cta-banner__text {
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

.cta-banner__btn {
    margin-top: 8px;
}

.cta-banner__micro {
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 4px 0 0;
}

@keyframes gradient-sweep {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 72px 20px;
    }

    .cta-banner__title {
        font-size: 36px;
    }
}

/* ============================================
   FAQ ACCORDION
   Native <details>/<summary> with neon styling
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    cursor: pointer;
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question__text {
    flex: 1;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: transform 0.3s, opacity 0.3s;
}

.faq-icon::before {
    top: 9px;
    left: 2px;
    right: 2px;
    height: 2px;
}

.faq-icon::after {
    left: 9px;
    top: 2px;
    bottom: 2px;
    width: 2px;
}

.faq-item[open] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 16px 16px;
    animation: faq-slide-down 0.3s ease-out;
}

.faq-answer p {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

@keyframes faq-slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TABLES
   ============================================ */

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
}

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    color: var(--foreground);
}

.comparison-table th {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: var(--muted);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(0, 240, 255, 0.02);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   CALLOUT & SUMMARY BOXES
   ============================================ */

.callout {
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 20px;
    background: var(--card);
    margin: 24px 0;
}

.callout--warning {
    border-left-color: var(--destructive);
}

.callout--success {
    border-left-color: var(--accent);
}

.callout--info {
    border-left-color: var(--primary);
}

.callout p {
    margin: 0;
}

.callout p + p {
    margin-top: 12px;
}

.summary-box {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    background: var(--muted);
    margin: 24px 0;
}

.summary-box__title {
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin: 0 0 12px;
}

.summary-box p {
    margin: 0;
    color: var(--foreground);
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 16px 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--card);
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ============================================
   BONUS TIERS
   ============================================ */

.bonus-tiers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-tier {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    background: var(--card);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.bonus-tier:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.bonus-tier--featured {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.bonus-tier__number {
    font-family: "Orbitron", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.bonus-tier__body {
    flex: 1;
    min-width: 0;
}

.bonus-tier__title {
    font-family: "Orbitron", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    margin: 0 0 6px;
}

.bonus-tier__desc {
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    color: var(--muted-foreground);
    margin: 0;
}

@media (min-width: 768px) {
    .bonus-tier__number {
        font-size: 42px;
    }
}

/* ============================================
   PROVIDER STRIP
   ============================================ */

.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.provider-logo {
    height: 48px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    display: flex;
    align-items: center;
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.provider-logo:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.1);
}

/* ============================================
   PROCESS FLOW
   ============================================ */

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    background: var(--card);
    text-align: center;
    position: relative;
}

.process-step__number {
    font-family: "Orbitron", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.35);
    margin-bottom: 12px;
}

.process-step__title {
    font-family: "Orbitron", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    margin: 0 0 8px;
}

.process-step__text {
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

@media (min-width: 768px) {
    .process-flow {
        flex-direction: row;
        align-items: stretch;
    }

    .process-step {
        flex: 1;
    }
}

/* ============================================
   BADGES & UTILITIES
   ============================================ */

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--primary {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 240, 255, 0.4);
}

.badge--accent {
    background: rgba(57, 255, 20, 0.1);
    color: var(--accent);
    border: 1px solid rgba(57, 255, 20, 0.4);
}

.badge--secondary {
    background: rgba(186, 104, 255, 0.1);
    color: #ba68ff;
    border: 1px solid rgba(186, 104, 255, 0.4);
}

.badge--warning {
    background: rgba(255, 77, 109, 0.1);
    color: var(--destructive);
    border: 1px solid rgba(255, 77, 109, 0.4);
}

.text-center {
    text-align: center;
}

.neon-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 40px 0;
    border: none;
    opacity: 0.5;
}

/* ============================================
   PROSE - Article-like content
   ============================================ */

.prose {
    max-width: 80ch;
}

.prose p {
    margin: 0 0 28px;
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
}

.prose h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--foreground);
}

.prose h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 32px 0 16px;
    color: var(--foreground);
}

.prose ul,
.prose ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 12px;
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
}

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 240, 255, 0.3);
    transition: text-decoration-color 0.3s;
}

.prose a:hover {
    text-decoration-color: var(--primary);
}

.prose strong {
    color: var(--accent);
    font-weight: 600;
}

.prose blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--primary);
    background: var(--card);
    border-radius: 0 8px 8px 0;
}

.prose blockquote p {
    margin: 0;
    font-size: 18px;
    font-style: italic;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .prose h2 {
        font-size: 36px;
    }
    .prose h3 {
        font-size: 28px;
    }
}

/* ============================================
   ANIMATIONS - Scroll reveal
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0ms);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 48px 20px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
}

.footer-brand {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
    display: inline-block;
    margin-bottom: 12px;
}

.footer-title {
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 16px;
}

.footer-text {
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0 0 12px;
}

.footer-warning {
    color: var(--destructive);
    font-weight: 500;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    color: var(--muted-foreground);
    transition: color 0.3s;
}

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

.footer-link {
    display: inline-block;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    color: var(--muted-foreground);
    margin-top: 8px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
        gap: 40px;
    }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */

.sitemap-hero {
    padding: 60px 0 40px;
}

.sitemap-hero .hero__inner {
    flex-direction: column;
    gap: 20px;
}

.sitemap-hero .hero__content {
    max-width: 70ch;
}

.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sitemap-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    background: var(--card);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s ease-out;
}

.sitemap-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

.sitemap-item__title {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 12px;
}

.sitemap-item__title a {
    color: var(--primary);
    text-decoration: none;
}

.sitemap-item__title a:hover {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.sitemap-item__desc {
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

@media (min-width: 1024px) {
    .sitemap-hero {
        padding: 80px 0 48px;
    }
}

/* ============================================
   WELCOME BONUS LAYOUT
   ============================================ */

.welcome-bonus-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
}

.welcome-bonus-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.welcome-bonus-stats {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .welcome-bonus-layout {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .welcome-bonus-visual {
        flex: 0 0 40%;
    }

    .welcome-bonus-stats {
        flex: 1;
    }
}

/* ============================================
   CRYPTO TOKEN ROW
   ============================================ */

.crypto-row {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.crypto-token {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.crypto-token:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(57, 255, 20, 0.15);
}

.crypto-token img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.crypto-token__label {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .crypto-row {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .crypto-token {
        padding: 20px 24px;
    }

    .crypto-token img {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   SUPPORT & RESPONSIBILITY CARDS
   ============================================ */

.support-card,
.responsibility-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    background: var(--card);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.support-card:hover,
.responsibility-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.support-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.support-card__title,
.responsibility-card__title {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--foreground);
    margin: 0 0 12px;
}

.support-card__text,
.responsibility-card__text {
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0 0 16px;
}

.responsibility-card .callout {
    margin: 16px 0 0;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
    .section-title {
        font-size: 22px;
    }
    .hero__title {
        font-size: 26px;
    }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
