/*
 * VOX CASINO - DESIGN SYSTEM
 * Dark luxury aesthetic with orange accents.
 * Single theme: dark only (no toggle).
 * Fonts: Unbounded (headlines), Manrope (body).
 */

/* ============================================
   DESIGN TOKENS
   Dark theme is the only theme - values live in :root
   ============================================ */
:root {
    --background: #0A0A0B;
    --foreground: #F5F5F0;
    --card: #1c1c1e;
    --card-foreground: #F5F5F0;
    --popover: #1c1c1e;
    --popover-foreground: #F5F5F0;
    --primary: #ff6b1a;
    --primary-foreground: #0A0A0B;
    --secondary: #1c1c1e;
    --secondary-foreground: #F5F5F0;
    --muted: #2a2a2c;
    --muted-foreground: #a8a8a8;
    --accent: #ff7a1a;
    --accent-foreground: #0A0A0B;
    --accent-hover: #ff9933;
    --destructive: #ea1414;
    --destructive-foreground: #ffffff;
    --border: #2a2a2c;
    --input: #1c1c1e;
    --ring: #ff7a1a;

    /* Custom tokens */
    --header-height: 64px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: 200ms ease;
    --transition-slow: 300ms ease-out;
    --shadow-glow: 0 0 24px rgba(255, 122, 26, 0.15);
    --shadow-glow-strong: 0 0 40px rgba(255, 122, 26, 0.25);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ============================================
   TYPOGRAPHY
   Unbounded for headlines, Manrope for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Unbounded", sans-serif;
    color: var(--foreground);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

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

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

p {
    margin-bottom: 16px;
}

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

strong, b {
    font-weight: 700;
    color: var(--foreground);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-w-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 48px 0;
    overflow-x: clip;
}

.section-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    min-height: 48px;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 17px;
    padding: 16px 40px;
    min-height: 52px;
}

.btn-sm {
    font-size: 14px;
    padding: 10px 20px;
    min-height: 40px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.95);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand .logo {
    border-radius: 50%;
}

.brand-name {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

/* Hide brand name text on mobile to save space */
@media (max-width: 767px) {
    .brand-name {
        display: none;
    }
}

/* Primary nav - hidden on mobile, drawer when open */
.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;
    overflow-y: auto;
    padding: 32px 24px;
    gap: 24px;
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.primary-nav.is-open .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border);
}

.primary-nav.is-open .nav-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--foreground);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Mobile register button - visible only on mobile */
.mobile-register {
    display: inline-flex;
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all var(--transition);
    margin: 0 auto;
}

.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 HEADER (≥768px)
   ============================================ */
@media (min-width: 768px) {
    :root {
        --header-height: 72px;
    }

    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }

    .brand-name {
        display: inline;
    }

    .primary-nav {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: space-between;
        position: static;
        background: transparent;
        padding: 0;
        z-index: auto;
        flex-direction: row;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        gap: 32px;
    }

    .nav-actions {
        flex-direction: row;
        gap: 12px;
    }

    .mobile-register {
        display: none;
    }

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

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

/* ============================================
   MAIN CONTENT
   ============================================ */
#main-content {
    flex: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: clip;
    padding: 48px 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 11, 0.97) 0%, rgba(10, 10, 11, 0.75) 50%, rgba(10, 10, 11, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 0 24px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

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

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content {
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 680px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-content {
        max-width: 640px;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 48px;
    max-width: 720px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section { padding: 80px 0; }
    .section-title { font-size: 32px; }
}

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

/* ============================================
   INFO CARD GRID
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.info-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.info-card-image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 5 / 3;
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card-icon {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1;
}

.info-card-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--foreground);
}

.info-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    flex: 1;
}

.info-card-text strong {
    color: var(--foreground);
}

.info-card-link {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

.info-card-link:hover {
    color: var(--accent-hover);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: #050506;
    padding: 48px 24px;
    overflow: clip;
    text-align: center;
}

.cta-banner-glow {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 26, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-headline {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin-bottom: 16px;
}

.cta-banner-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-microcopy {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 80px 24px;
    }

    .cta-banner-headline {
        font-size: 36px;
    }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--foreground);
    text-align: left;
    min-height: 44px;
    transition: color var(--transition);
}

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

.faq-question-text {
    flex: 1;
    padding-right: 16px;
}

.faq-chevron {
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 250ms ease-in-out;
}

.faq-item.is-active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease-in-out;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.faq-answer-inner strong {
    color: var(--foreground);
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin: 32px 0;
}

.summary-box-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 16px;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.6;
}

.summary-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

/* Callout / highlight box */
.callout-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin: 32px 0;
}

.callout-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 12px;
}

.callout-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 32px 16px;
}

.stat-number {
    font-family: "Unbounded", sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    margin-top: 12px;
    font-size: 16px;
    color: var(--foreground);
    font-weight: 500;
}

.stat-source {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .stat-number { font-size: 56px; }
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--accent);
    padding: 24px 32px;
    margin: 40px 0;
    font-family: "Unbounded", sans-serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--foreground);
    font-weight: 400;
}

.pull-quote cite {
    display: block;
    margin-top: 16px;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .pull-quote { font-size: 28px; }
}

/* ============================================
   CRO PATTERNS
   ============================================ */

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition), border-color var(--transition);
}

.trust-badge:hover {
    color: var(--foreground);
    border-color: var(--accent);
}

/* Comparison table */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 32px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

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

.comparison-table th {
    background: var(--muted);
    color: var(--accent);
    padding: 16px 20px;
    text-align: left;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.comparison-table td {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--foreground);
    vertical-align: top;
}

.comparison-table tr.recommended {
    background: rgba(255, 122, 26, 0.06);
}

.comparison-table tr.recommended td {
    border-top: 1px solid var(--accent);
}

/* General table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
}

th {
    background: var(--muted);
    color: var(--accent);
    padding: 14px 20px;
    text-align: left;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 15px;
}

td {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--foreground);
}

/* Testimonial / social proof */
.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin: 24px 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* ============================================
   CONTENT PROSE STYLING
   Generic styles for article-like content
   ============================================ */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-content h3 {
    margin-top: 36px;
    margin-bottom: 16px;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--foreground);
}

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

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: 8px;
    color: var(--foreground);
}

.article-content ul li::marker {
    color: var(--accent);
}

.article-content ol li::marker {
    color: var(--accent);
    font-weight: 700;
}

.article-content img {
    border-radius: var(--radius);
    margin: 32px 0;
    width: 100%;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 28px;
    margin: 32px 0;
    background: var(--card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 17px;
    font-style: italic;
    color: var(--foreground);
}

.article-content blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* Inline SEO anchor */
.inline-anchor {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color var(--transition);
}

.inline-anchor:hover {
    color: var(--accent-hover);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #050506;
    border-top: 1px solid var(--border);
    padding: 56px 24px 24px;
    margin-top: auto;
}

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

.footer-heading {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition);
}

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: color var(--transition), border-color var(--transition);
}

.payment-badge:hover {
    color: var(--foreground);
    border-color: var(--accent);
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

.footer-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
}

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

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    transition: transform 0.5s ease-out;
    transition-delay: var(--delay, 0ms);
}

.animate-on-scroll.js-animating {
    transform: translateY(20px);
}

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

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

    .animate-on-scroll,
    .animate-on-scroll.js-animating {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   HOMEPAGE - HERO TRUST ROW
   ============================================ */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.hero-trust-item {
    font-size: 14px;
    color: var(--muted-foreground);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ============================================
   WELCOME BONUS SECTION
   ============================================ */
.welcome-bonus-section {
    position: relative;
    padding: 64px 0;
    overflow: clip;
}

.welcome-bonus-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.welcome-bonus-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.welcome-bonus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 11, 0.98) 0%, rgba(10, 10, 11, 0.85) 40%, rgba(10, 10, 11, 0.6) 70%, rgba(10, 10, 11, 0.3) 100%);
    z-index: 1;
}

.welcome-bonus-content {
    position: relative;
    z-index: 2;
}

.welcome-bonus-inner {
    max-width: 600px;
}

.welcome-bonus-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 122, 26, 0.15);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.welcome-bonus-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin-bottom: 16px;
}

.welcome-bonus-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.welcome-bonus-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.wb-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
}

.wb-tier-num {
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--accent);
    line-height: 1;
}

.wb-tier-bonus {
    font-size: 15px;
    font-weight: 700;
    color: var(--foreground);
}

.wb-tier-fs {
    font-size: 13px;
    color: var(--muted-foreground);
}

.welcome-bonus-detail-link {
    margin-top: 20px;
    font-size: 15px;
}

@media (min-width: 768px) {
    .welcome-bonus-section {
        padding: 100px 0;
    }

    .welcome-bonus-title {
        font-size: 36px;
    }

    .welcome-bonus-tiers {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .welcome-bonus-title {
        font-size: 40px;
    }
}

/* ============================================
   PAYMENT SHOWCASE GRID
   ============================================ */
.payment-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.payment-showcase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.payment-showcase-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.payment-showcase-card img {
    height: 40px;
    width: auto;
    filter: grayscale(1) opacity(0.7);
    transition: filter var(--transition);
}

.payment-showcase-card:hover img {
    filter: grayscale(0) opacity(1);
}

.payment-showcase-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: color var(--transition);
}

.payment-showcase-card:hover span {
    color: var(--foreground);
}

@media (min-width: 768px) {
    .payment-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* ============================================
   PAYMENT INFO STATS ROW
   ============================================ */
.payment-info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

/* ============================================
   LICENSE SECTION
   ============================================ */
.license-section {
    background: #050506;
}

.license-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.license-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.license-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.license-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.license-card-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--foreground);
    margin-bottom: 12px;
}

.license-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

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

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
}

.sitemap-entry {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: border-color var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-slow);
}

.sitemap-entry:hover {
    border-color: var(--accent);
    transform: scale(1.01);
    box-shadow: var(--shadow-glow);
}

.sitemap-entry-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
}

.sitemap-entry-title a {
    color: var(--foreground);
    text-decoration: none;
    transition: color var(--transition);
}

.sitemap-entry-title a:hover {
    color: var(--accent);
}

.sitemap-entry-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

@media (min-width: 768px) {
    .sitemap-list {
        gap: 20px;
    }

    .sitemap-entry {
        padding: 32px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
