/* ==========================================================================
   Smart Game Index — Premium Swiss-Grid / Fintech Dark Theme
   ========================================================================== */

:root {
    /* Colors */
    --bg-primary: #0B0F19;
    --bg-secondary: #111827;
    --bg-elevated: #151C2C;
    --bg-surface: #1A2234;

    --border: #1F2937;
    --border-light: #374151;

    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;

    --accent: #10B981;
    --accent-dark: #059669;
    --accent-light: #34D399;
    --accent-glow: rgba(16, 185, 129, 0.12);

    --danger: #EF4444;
    --warning: #F59E0B;
    --success: #10B981;

    /* Typography */
    --font: 'DM Sans', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container: 1200px;
    --gap: 24px;
    --radius: 4px;
    --radius-sm: 2px;

    /* Transitions */
    --transition: 180ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.site-body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-light);
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.125rem; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 640px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-dark);
    color: #fff;
    border-color: var(--accent-dark);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: transparent;
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8125rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.logo:hover {
    color: var(--text-primary);
}

.logo-mark {
    color: var(--accent);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    min-width: 0;
    flex-shrink: 1;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-list li {
    flex-shrink: 0;
}

.nav-link {
    display: block;
    padding: 8px 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius);
    white-space: nowrap;
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--text-primary);
    background: var(--bg-surface);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    padding: 80px 0 64px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-item {
    padding: 24px 20px;
    background: var(--bg-elevated);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ==========================================================================
   Platform Table
   ========================================================================== */
.platforms-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
}

.platform-table {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.platform-row {
    display: grid;
    grid-template-columns: 48px 200px 120px 1fr 180px 140px;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.platform-row:last-child {
    border-bottom: none;
}

.platform-row:hover {
    background: var(--bg-elevated);
}

.platform-row--header {
    background: var(--bg-surface);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 12px 24px;
}

.platform-row--header:hover {
    background: var(--bg-surface);
}

.platform-rank {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
}

.platform-rank--top {
    color: var(--accent);
}

.platform-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.platform-name-wrap {
    min-width: 0;
}

.platform-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.platform-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
}

.platform-rating {
    text-align: center;
}

.rating-score {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: 6px;
}

.star {
    width: 12px;
    height: 12px;
    color: var(--border-light);
}

.star--filled {
    color: var(--accent);
}

.platform-bonus {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    padding: 4px 8px;
    font-size: 0.6875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.tag--pro {
    color: var(--accent-light);
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.tag--con {
    color: var(--text-muted);
    background: var(--bg-primary);
}

.platform-cta {
    text-align: right;
}

/* Mobile cards */
.platform-cards {
    display: none;
}

.platform-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-secondary);
    padding: 20px;
    margin-bottom: 16px;
}

.platform-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.platform-card-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 32px;
}

.platform-card-body {
    margin-bottom: 16px;
}

.platform-card-bonus {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 12px 0;
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* ==========================================================================
   Info Blocks
   ========================================================================== */
.info-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 40px;
}

.info-card {
    padding: 32px 28px;
    background: var(--bg-elevated);
}

.info-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-primary);
}

.info-card-title {
    font-size: 1rem;
    margin-bottom: 12px;
}

.info-card-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.criteria-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.criteria-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.criteria-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.criteria-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

/* ==========================================================================
   Wheel of Fortune
   ========================================================================== */
.wheel-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.wheel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.wheel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wheel-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
}

#wheel-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--border-light);
}

.wheel-pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid var(--accent);
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--accent);
    z-index: 3;
}

.wheel-controls {
    margin-top: 24px;
    text-align: center;
}

.wheel-spins {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.wheel-spins strong {
    color: var(--accent);
}

.wheel-info h2 {
    margin-bottom: 16px;
}

.wheel-info p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.wheel-rules {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.wheel-rules h3 {
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.wheel-rules li {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.wheel-rules li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.faq-list {
    margin-top: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-elevated);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-surface);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-secondary);
    transition: transform var(--transition);
}

.faq-icon::before {
    top: 9px;
    left: 4px;
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    top: 4px;
    left: 9px;
    width: 2px;
    height: 12px;
}

.faq-item.is-open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    background: var(--bg-elevated);
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
}

/* ==========================================================================
   Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease;
}

.modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 40px 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transform: translateY(16px);
    transition: transform 250ms ease;
}

.modal-overlay.is-visible .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-icon {
    margin: 0 auto 20px;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.modal-prize {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.modal .btn {
    margin-bottom: 8px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.page-hero {
    padding: 64px 0 48px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-secondary);
    max-width: 560px;
}

.page-content {
    padding: 64px 0 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--accent);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input.is-error,
.form-textarea.is-error {
    border-color: var(--danger);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-error {
    display: none;
    font-size: 0.75rem;
    color: var(--danger);
    margin-top: 6px;
}

.form-group.has-error .form-error {
    display: block;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input {
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-checkbox-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-sidebar {
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-sidebar h3 {
    margin-bottom: 20px;
}

.contact-info-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

/* ==========================================================================
   Thank You Page
   ========================================================================== */
.thankyou-section {
    padding: 120px 0;
    text-align: center;
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius);
    color: var(--accent);
}

.thankyou-section h1 {
    margin-bottom: 16px;
}

.thankyou-section p {
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 32px;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-content {
    max-width: 760px;
}

.legal-content h2 {
    font-size: 1.25rem;
    margin: 40px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content p,
.legal-content li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    margin-top: auto;
    padding: 48px 0 32px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.compliance-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin-bottom: 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.badge-18 {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    background: var(--danger);
    border-radius: var(--radius);
}

.compliance-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.help-resources {
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.help-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.help-links a {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.help-links a:hover {
    color: var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 320px;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.affiliate-disclosure {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.affiliate-disclosure p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-domain {
    font-weight: 600;
    color: var(--text-secondary);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .header-inner {
        gap: 12px;
    }

    .logo-sub {
        display: none;
    }

    .nav-link {
        padding: 8px 8px;
        font-size: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .platform-row {
        grid-template-columns: 40px 160px 100px 1fr 120px;
    }

    .platform-tags {
        display: none;
    }

    .hero-grid,
    .wheel-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        max-width: 480px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 16px 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 250ms ease;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        padding: 12px 16px;
    }

    .platform-table {
        display: none;
    }

    .platform-cards {
        display: block;
    }

    .criteria-list {
        grid-template-columns: 1fr;
    }

    .wheel-wrapper {
        width: 280px;
        height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
