/* ==========================================================================
   Ice Fishing Slot - Mobile-First CSS
   Optimized for Core Web Vitals (LCP, FID, CLS)
   ========================================================================== */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
    /* Colors */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #f97316;
    --secondary-dark: #ea580c;
    --accent: #ef4444;
    --accent-dark: #dc2626;
    
    /* Background colors */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    --bg-alt: #0c1222;
    
    /* Text colors */
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    /* Gradients */
    --gradient-ice: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #0284c7 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-red: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    
    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Prevent CLS by setting explicit dimensions where possible */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    z-index: var(--z-tooltip);
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: var(--space-md);
}

/* Visually hidden but accessible */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .nav {
        height: 70px;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.logo svg {
    width: 32px;
    height: 32px;
}

@media (min-width: 768px) {
    .logo {
        font-size: 1.25rem;
    }
    .logo svg {
        width: 40px;
        height: 40px;
    }
}

/* Mobile nav toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: var(--transition-base);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Navigation menu */
.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    list-style: none;
    padding: var(--space-md);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
    .nav-menu {
        position: static;
        display: flex;
        gap: var(--space-lg);
        padding: 0;
        background: transparent;
        border: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
}

.nav-menu a {
    display: block;
    padding: var(--space-sm) 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary);
}

@media (min-width: 1024px) {
    .nav-menu a {
        padding: var(--space-xs) 0;
    }
}

/* Language switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + var(--space-xs));
    right: 0;
    min-width: 140px;
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-md);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: var(--z-dropdown);
    box-shadow: var(--shadow-lg);
}

.lang-switcher:focus-within .lang-dropdown,
.lang-btn[aria-expanded="true"] + .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.lang-dropdown a:hover {
    background: var(--bg-card-hover);
    color: var(--text);
}

.lang-dropdown li[aria-selected="true"] a {
    color: var(--primary);
    font-weight: 500;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(60px + var(--space-xl)) var(--space-md) var(--space-xl);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: calc(70px + var(--space-3xl)) var(--space-xl) var(--space-3xl);
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.025em;
}

h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient-ice);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.8125rem;
    }
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    min-height: 48px;
}

.btn-primary {
    background: var(--gradient-ice);
    color: white;
    box-shadow: var(--shadow-md), 0 0 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

/* Particles animation */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* ==========================================================================
   Info Bar
   ========================================================================== */
.info-bar {
    background: var(--bg-card);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding: var(--space-md) 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.info-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: calc(var(--space-3xl) * 1.5) 0;
    }
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 1.125rem;
    }
}

/* ==========================================================================
   Content Cards
   ========================================================================== */
.content-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.content-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: var(--transition-base);
}

.content-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-icon.blue {
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary);
}

.card-icon.cyan {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.card-icon.orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--secondary);
}

.content-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.content-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Specs Table
   ========================================================================== */
.specs-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(var(--space-md) * -1);
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .specs-table-wrapper {
        margin: 0;
        padding: 0;
    }
}

.specs-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.specs-table th {
    background: rgba(14, 165, 233, 0.1);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.specs-table td {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.specs-table td:first-child {
    font-weight: 500;
    color: var(--text);
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

.specs-table tbody tr:hover {
    background: rgba(148, 163, 184, 0.05);
}

/* ==========================================================================
   Wheel Breakdown
   ========================================================================== */
.wheel-breakdown {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .wheel-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

.segment-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.segment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: rgba(148, 163, 184, 0.05);
}

.segment-name {
    font-weight: 600;
    font-size: 1rem;
}

.segment-count {
    font-size: 0.8125rem;
    color: var(--text-muted);
    background: rgba(148, 163, 184, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.segment-card.leaf .segment-header {
    background: rgba(34, 197, 94, 0.1);
}

.segment-card.blues .segment-header {
    background: rgba(14, 165, 233, 0.1);
}

.segment-card.oranges .segment-header {
    background: rgba(249, 115, 22, 0.1);
}

.segment-card.reds .segment-header {
    background: rgba(239, 68, 68, 0.1);
}

.segment-body {
    padding: var(--space-lg);
}

.segment-body p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.segment-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.stat-pill {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(148, 163, 184, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.stat-pill.highlight {
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary);
    font-weight: 500;
}

/* ==========================================================================
   Bonus Cards
   ========================================================================== */
.bonus-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: var(--transition-base);
}

.bonus-card:hover {
    transform: translateY(-4px);
}

.bonus-card.featured {
    border-color: rgba(239, 68, 68, 0.3);
}

@media (min-width: 1024px) {
    .bonus-card.featured {
        grid-column: span 1;
    }
}

.bonus-header {
    padding: var(--space-xl);
    text-align: center;
}

.blues-bg {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.oranges-bg {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(251, 146, 60, 0.1) 100%);
}

.reds-bg {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(248, 113, 113, 0.1) 100%);
}

.fish-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
}

.blue-fish {
    color: var(--primary);
}

.orange-fish {
    color: var(--secondary);
}

.red-fish {
    color: var(--accent);
}

.bonus-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.multiplier-range {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.bonus-body {
    padding: var(--space-lg);
}

.bonus-body p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.bonus-body h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-body ul {
    list-style: none;
    margin-bottom: var(--space-md);
}

.bonus-body li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.bonus-body li::before {
    content: '•';
    position: absolute;
    left: var(--space-sm);
    color: var(--primary);
}

.bonus-verdict {
    padding: var(--space-md);
    background: rgba(148, 163, 184, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.bonus-verdict strong {
    display: block;
    font-size: 0.8125rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.bonus-verdict span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Multiplier Explanation Box */
.multiplier-explanation {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.multiplier-explanation h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.multiplier-explanation p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.multiplier-explanation em {
    color: var(--primary);
    font-style: normal;
    font-weight: 500;
}

.example-box {
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border-left: 3px solid var(--primary);
}

.example-box h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.example-box p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text);
}

/* ==========================================================================
   RTP Section
   ========================================================================== */
.rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .rtp-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rtp-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.rtp-card.highlight {
    border-color: rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.rtp-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.rtp-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin: var(--space-xs) 0;
}

.rtp-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin: 0;
}

.rtp-details {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.rtp-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.rtp-details p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border-left: 3px solid var(--accent);
    margin-bottom: var(--space-lg);
}

.warning-box h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.warning-box p {
    margin: 0;
    font-size: 0.875rem;
}

/* ==========================================================================
   How to Play Steps
   ========================================================================== */
.steps-list {
    list-style: none;
    counter-reset: step;
    margin-bottom: var(--space-2xl);
}

.step {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-ice);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Pro Tips Box */
.pro-tips {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.pro-tips h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.pro-tips ul {
    list-style: none;
}

.pro-tips li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.pro-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.pro-tips li strong {
    color: var(--text);
}

/* ==========================================================================
   Strategy Section
   ========================================================================== */
.strategy-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 1024px) {
    .strategy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.strategy-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.strategy-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(148, 163, 184, 0.05);
}

.strategy-icon {
    font-size: 1.5rem;
}

.strategy-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.strategy-body {
    padding: var(--space-lg);
}

.strategy-body p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.strategy-body h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.allocation-bar {
    display: flex;
    height: 24px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.allocation-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
}

.allocation-segment.leaf {
    background: #22c55e;
}

.allocation-segment.bonus {
    background: var(--primary);
}

.allocation-segment.bonus-high {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
}

.strategy-body ul {
    list-style: none;
}

.strategy-body li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.strategy-body li::before {
    content: '•';
    position: absolute;
    left: var(--space-sm);
    color: var(--primary);
}

.strategy-warning {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(148, 163, 184, 0.1);
    text-align: center;
}

.strategy-warning h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.strategy-warning p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   Mobile Section
   ========================================================================== */
.mobile-features {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .mobile-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mobile-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.mobile-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.mobile-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Demo Section
   ========================================================================== */
.demo-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.demo-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.demo-placeholder:hover {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.demo-content {
    text-align: center;
}

.demo-icon {
    width: 80px;
    height: 80px;
    color: var(--primary);
    margin-bottom: var(--space-md);
    opacity: 0.8;
    transition: var(--transition-base);
}

.demo-placeholder:hover .demo-icon {
    opacity: 1;
    transform: scale(1.1);
}

.demo-content p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.demo-note {
    padding: var(--space-md);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-dim);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.demo-benefits {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.demo-benefits h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.demo-benefits ul {
    list-style: none;
    display: grid;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .demo-benefits ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

.demo-benefits li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.demo-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.1);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    list-style: none;
    transition: var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition-fast);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: rgba(148, 163, 184, 0.05);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Responsible Gaming Section
   ========================================================================== */
.responsible-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.responsible-content > p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.responsible-tips {
    list-style: none;
    text-align: left;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.responsible-tips li {
    position: relative;
    padding-left: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.responsible-tips li:last-child {
    margin-bottom: 0;
}

.responsible-tips li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.help-resources {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.help-resources p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.help-resources ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.help-resources a {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.help-resources a:hover {
    background: rgba(14, 165, 233, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-brand p a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-brand p a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-nav h4,
.footer-lang h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.footer-nav ul,
.lang-list {
    list-style: none;
}

.footer-nav li,
.lang-list li {
    margin-bottom: var(--space-sm);
}

.footer-nav a,
.lang-list a {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.lang-list a:hover {
    color: var(--primary);
}

.lang-list a[aria-current="page"] {
    color: var(--primary);
    font-weight: 500;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    text-align: center;
}

.disclaimer {
    font-size: 0.8125rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto var(--space-md);
    line-height: 1.6;
}

.copyright {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .header,
    .hero::before,
    .particles,
    .nav-toggle,
    .lang-switcher,
    .demo-box,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 1rem 0;
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ==========================================================================
   Additional Page Styles (Bonus Rounds, RTP, How to Play, Strategy)
   ========================================================================== */

/* Breadcrumb */
.breadcrumb {
    padding: calc(70px + var(--space-lg)) 0 var(--space-md);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.875rem;
    gap: var(--space-xs);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: var(--space-xs);
    color: var(--text-dim);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb [aria-current="page"] {
    color: var(--text);
}

/* Page Hero */
.page-hero {
    padding: var(--space-xl) 0 var(--space-3xl);
    background: var(--gradient-dark);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    margin-bottom: var(--space-lg);
}

.page-intro {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

/* Author Box */
.author-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-ice);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
}

a.author-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition-fast);
}

a.author-name:hover {
    color: var(--primary);
}

.author-title {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.article-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8125rem;
    color: var(--text-dim);
}

@media (min-width: 640px) {
    .author-box {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .article-meta {
        margin-left: auto;
    }
}

/* Content Narrow */
.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: var(--space-lg);
}

.content-narrow h3 {
    font-size: 1.25rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-narrow h4 {
    font-size: 1rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.content-narrow p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

/* Highlight Box */
.highlight-box {
    background: rgba(14, 165, 233, 0.1);
    border-left: 4px solid var(--primary);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-xl) 0;
}

.highlight-box h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.highlight-box p {
    margin-bottom: 0;
}

/* Quick Stats Grid */
.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

@media (max-width: 640px) {
    .quick-stats-grid {
        grid-template-columns: 1fr;
    }
}

.quick-stat {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid transparent;
}

.quick-stat.blue {
    border-color: var(--primary);
}

.quick-stat.orange {
    border-color: var(--secondary);
}

.quick-stat.red {
    border-color: var(--accent);
}

.quick-stat h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.stat-range {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.stat-freq {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.feature-list li strong {
    color: var(--text);
}

/* Bonus Deep Dive */
.bonus-deep-dive {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.bonus-header-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    text-align: center;
}

@media (min-width: 640px) {
    .bonus-header-large {
        flex-direction: row;
        text-align: left;
    }
}

.blues-theme {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.oranges-theme {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(251, 146, 60, 0.1) 100%);
}

.reds-theme {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(248, 113, 113, 0.1) 100%);
}

.fish-visual {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.fish-visual.blue { color: var(--primary); }
.fish-visual.orange { color: var(--secondary); }
.fish-visual.red { color: var(--accent); }

.bonus-title-group h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.multiplier-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Content Grid 2 */
.content-grid-2 {
    display: grid;
    gap: var(--space-xl);
    padding: var(--space-xl);
}

@media (min-width: 1024px) {
    .content-grid-2 {
        grid-template-columns: 1fr 320px;
    }
}

.content-main h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.content-main h4 {
    font-size: 1rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.content-main p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

/* Sidebar Stats */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.stat-card {
    background: rgba(148, 163, 184, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.stat-card.featured {
    border-color: rgba(239, 68, 68, 0.3);
}

.stat-card h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.mini-table {
    width: 100%;
}

.mini-table tr {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.mini-table tr:last-child {
    border-bottom: none;
}

.mini-table td {
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
}

.mini-table td:first-child {
    color: var(--text-muted);
}

.mini-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--text);
}

.mini-table tr.highlight td {
    color: var(--primary);
}

/* Pro Tip Box */
.pro-tip,
.warning-tip {
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.pro-tip {
    background: rgba(14, 165, 233, 0.1);
    border-left: 3px solid var(--primary);
}

.warning-tip {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--accent);
}

.pro-tip h4,
.warning-tip h4 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.pro-tip h4 { color: var(--primary); }
.warning-tip h4 { color: var(--accent); }

.pro-tip p,
.warning-tip p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Calculation Box */
.calculation-box {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    margin: var(--space-lg) 0;
}

.calculation-box p {
    font-size: 1.125rem;
    color: var(--text);
    margin: 0;
}

.calculation-box strong {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Tables Base Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 0.9375rem;
}

th, td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

th {
    background: rgba(14, 165, 233, 0.1);
    font-weight: 600;
    color: var(--text);
}

td {
    color: var(--text-muted);
}

tbody tr:hover {
    background: rgba(148, 163, 184, 0.05);
}

/* Comparison Table Enhanced */
.comparison-table {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.comparison-table th,
.comparison-table td {
    border-color: rgba(148, 163, 184, 0.15);
    padding: var(--space-md) var(--space-lg);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text);
    background: rgba(148, 163, 184, 0.05);
}

.comparison-table th.blue-col { 
    color: var(--primary); 
    background: rgba(14, 165, 233, 0.15);
}
.comparison-table th.orange-col { 
    color: var(--secondary); 
    background: rgba(249, 115, 22, 0.15);
}
.comparison-table th.red-col { 
    color: var(--accent); 
    background: rgba(239, 68, 68, 0.15);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(148, 163, 184, 0.03);
}

.comparison-table tbody tr:hover {
    background: rgba(14, 165, 233, 0.08);
}

.comparison-table .highlight-row {
    background: rgba(14, 165, 233, 0.1);
}

/* Responsive table wrapper */
.table-wrapper,
.specs-table-wrapper,
.comparison-table-wrapper,
.math-table-wrapper {
    overflow-x: auto;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-lg);
}

/* Specs Table */
.specs-table {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.specs-table th,
.specs-table td {
    border-color: rgba(148, 163, 184, 0.15);
}

.specs-table th {
    background: rgba(14, 165, 233, 0.1);
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text);
}

/* Math Table */
.math-table {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.math-table th,
.math-table td {
    border-color: rgba(148, 163, 184, 0.15);
    text-align: center;
}

.math-table th:first-child,
.math-table td:first-child {
    text-align: left;
}

.math-table tbody tr:nth-child(even) {
    background: rgba(148, 163, 184, 0.03);
}

/* Mini Table (inside cards) */
.mini-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    margin: 0;
    border: none;
}

.mini-table td {
    padding: var(--space-sm) 0;
    border: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.mini-table tr:last-child td {
    border-bottom: none;
}

.mini-table td:first-child {
    color: var(--text-muted);
}

.mini-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 640px) {
    th, td {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.875rem;
    }
}

/* Recommendation Cards */
.recommendation-cards {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .recommendation-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rec-card {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.rec-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.rec-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.rec-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.rec-card p:last-child {
    margin-bottom: 0;
}

/* Final Note */
.final-note {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.final-note h3 {
    margin-top: 0;
}

/* Author Section Full */
.author-section {
    background: var(--bg-alt);
}

.author-bio-full {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .author-bio-full {
        flex-direction: row;
        align-items: flex-start;
    }
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-ice);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
    flex-shrink: 0;
}

a.author-avatar-large:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
}

.author-bio-content h4 a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition-fast);
}

.author-bio-content h4 a:hover {
    color: var(--primary);
}
    flex-shrink: 0;
}

.author-bio-content h3 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.author-bio-content h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.author-credentials {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.author-bio-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.author-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.author-links a {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.author-links a:hover {
    background: rgba(14, 165, 233, 0.2);
}

/* Related Grid */
.related-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: var(--transition-base);
}

.related-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.related-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-md);
}

.related-card h3 {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.related-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: var(--space-2xl);
}

/* RTP Hero Grid */
.rtp-hero-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .rtp-hero-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rtp-hero-card {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.rtp-hero-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.15) 100%);
    border-color: var(--primary);
}

@media (min-width: 768px) {
    .rtp-hero-card.featured {
        grid-column: span 1;
    }
}

.rtp-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.rtp-value-large {
    display: block;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
}

.rtp-hero-card .rtp-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: var(--space-xs);
}

/* Definition Box */
.definition-box {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
}

.definition-box h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.definition-box p {
    margin-bottom: 0;
}

/* Volatility Scale */
.volatility-scale {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
    .volatility-scale {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vol-item {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--text-dim);
}

.vol-item.low { border-top-color: #22c55e; }
.vol-item.medium { border-top-color: var(--secondary); }
.vol-item.high { border-top-color: var(--accent); }

.vol-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-bottom: var(--space-xs);
}

.vol-bet {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.vol-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Math Table */
.math-table-wrapper {
    overflow-x: auto;
    margin: 0 calc(var(--space-md) * -1);
    padding: 0 var(--space-md);
}

.math-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.math-table th,
.math-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.math-table th {
    background: rgba(148, 163, 184, 0.05);
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text);
}

.math-table td {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.math-table .leaf-row td:first-child { color: #22c55e; }
.math-table .blue-row td:first-child { color: var(--primary); }
.math-table .orange-row td:first-child { color: var(--secondary); }
.math-table .red-row td:first-child { color: var(--accent); }

.math-table .total-row {
    background: rgba(148, 163, 184, 0.05);
}

.math-table .total-row td {
    color: var(--text);
}

/* Important Note Box */
.important-note {
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid var(--secondary);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-xl) 0;
}

.important-note h4 {
    color: var(--secondary);
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.important-note p {
    margin-bottom: 0;
}

/* Quick Overview */
.quick-overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.overview-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-card);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
}

.overview-num {
    width: 28px;
    height: 28px;
    background: var(--gradient-ice);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    flex-shrink: 0;
}

.overview-item p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Steps Detailed */
.steps-detailed {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.step-detailed {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(148, 163, 184, 0.05);
}

.step-number-large {
    width: 56px;
    height: 56px;
    background: var(--gradient-ice);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-title-group h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.step-time {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.step-content {
    padding: var(--space-xl);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.step-content h4 {
    font-size: 1rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.checklist li::before {
    content: '☐';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Tip Box */
.tip-box {
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.tip-box h4 {
    color: var(--primary);
    font-size: 0.875rem;
    margin-top: 0;
    margin-bottom: var(--space-xs);
}

.tip-box p {
    margin: 0;
    font-size: 0.9375rem;
}

/* Bet Types Visual */
.bet-types-visual {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

@media (min-width: 640px) {
    .bet-types-visual {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bet-type {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--text-dim);
}

.bet-type.leaf { border-left-color: #22c55e; background: rgba(34, 197, 94, 0.1); }
.bet-type.blue { border-left-color: var(--primary); background: rgba(14, 165, 233, 0.1); }
.bet-type.orange { border-left-color: var(--secondary); background: rgba(249, 115, 22, 0.1); }
.bet-type.red { border-left-color: var(--accent); background: rgba(239, 68, 68, 0.1); }

.bet-type h4 {
    margin-top: 0;
    margin-bottom: var(--space-xs);
}

.bet-rtp {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.bet-type p:last-child {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Numbered List */
.numbered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
}

.numbered-list li {
    counter-increment: item;
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--text-muted);
    line-height: 1.6;
}

.numbered-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Outcome Types */
.outcome-types {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.outcome {
    background: rgba(148, 163, 184, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.outcome h5 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.outcome p {
    margin: 0;
    font-size: 0.875rem;
}

/* Calculation Example */
.calculation-example {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
}

.calculation-example h5 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.calculation-example p {
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
}

.calculation-example p:last-child {
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

/* Player Tips Grid */
.player-tips-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .player-tips-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.player-category {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.player-category h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.category-intro {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.tips-list li strong {
    color: var(--text);
}

/* Mistake List */
.mistake-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mistake {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.mistake h4 {
    color: var(--accent);
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.mistake p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Strategy Page Specific */
.reality-box {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.reality-box.positive {
    border-left: 4px solid #22c55e;
}

.reality-box h3 {
    margin-top: 0;
    margin-bottom: var(--space-md);
}

.reality-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reality-box li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.reality-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.reality-box.positive li::before {
    content: '✓';
    color: #22c55e;
}

/* Bankroll Principles */
.bankroll-principles {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.principle {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.principle h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: var(--space-md);
}

.principle p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.principle p:last-child {
    margin-bottom: 0;
}

.principle .example {
    font-size: 0.875rem;
    background: rgba(14, 165, 233, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* Strategy Cards Detailed */
.strategy-cards-detailed {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.strategy-detailed {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.strategy-detailed.featured {
    border-color: var(--primary);
}

.strategy-header-d {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(148, 163, 184, 0.05);
}

.strategy-icon-d {
    font-size: 2rem;
}

.strategy-header-d h3 {
    font-size: 1.25rem;
    margin: 0;
}

.strategy-rtp {
    font-size: 0.875rem;
    color: var(--text-muted);
    background: rgba(148, 163, 184, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.recommended-badge {
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.strategy-content-d {
    padding: var(--space-xl);
}

.strategy-content-d h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.strategy-content-d h4:first-child {
    margin-top: 0;
}

.strategy-content-d p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

/* Allocation Visual */
.allocation-visual {
    display: flex;
    height: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.alloc-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
}

.alloc-bar.leaf { background: #22c55e; }
.alloc-bar.blue { background: var(--primary); }
.alloc-bar.orange { background: var(--secondary); }
.alloc-bar.red { background: var(--accent); }

/* Tactic */
.tactic {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.tactic h3 {
    margin-top: 0;
    margin-bottom: var(--space-md);
}

.tactic p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.tactic p:last-child {
    margin-bottom: 0;
}

.tactic ul {
    list-style: none;
    padding: 0;
}

.tactic li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.tactic li::before {
    content: '•';
    position: absolute;
    left: var(--space-sm);
    color: var(--primary);
}

/* Pitfall */
.pitfall {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    border-left: 3px solid var(--secondary);
}

.pitfall h4 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.pitfall p {
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.pitfall p:first-of-type {
    font-style: italic;
    color: var(--text);
}

.pitfall p:last-child {
    margin-bottom: 0;
}

/* Warning Box Large */
.warning-box-large {
    background: rgba(239, 68, 68, 0.1);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(239, 68, 68, 0.3);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.warning-box-large h3 {
    color: var(--accent);
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.warning-box-large p {
    margin: 0;
    font-size: 1.125rem;
}

.warning-box-large strong {
    color: var(--accent);
}

/* Session Examples */
.session-examples {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
    .session-examples {
        grid-template-columns: repeat(2, 1fr);
    }
}

.session-ex {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.session-ex h4 {
    margin-top: 0;
    margin-bottom: var(--space-md);
}

.session-ex p {
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
}

/* Comparison Points */
.comparison-points {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
    .comparison-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

.point {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.point h4 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.point p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Author Page Styles
   ========================================================================== */

/* Author Hero */
.author-hero {
    padding: calc(70px + var(--space-xl)) 0 var(--space-3xl);
    background: var(--gradient-dark);
    text-align: center;
}

.author-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .author-hero-content {
        flex-direction: row;
        text-align: left;
    }
}

.author-avatar-xl {
    width: 120px;
    height: 120px;
    background: var(--gradient-ice);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.3);
}

.author-hero-info h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
    background: var(--gradient-ice);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.author-tagline {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: var(--space-xs);
}

.author-experience {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expertise-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: var(--transition-base);
}

.expertise-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
}

.expertise-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-md);
}

.expertise-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.expertise-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Credentials List */
.credentials-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.credential {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .credential {
        flex-direction: row;
        gap: var(--space-xl);
    }
}

.credential-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    min-width: 120px;
    flex-shrink: 0;
}

.credential-content h4 {
    margin-top: 0;
    margin-bottom: var(--space-xs);
}

.credential-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.credentials-note {
    background: rgba(249, 115, 22, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
}

.credentials-note p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.article-type {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    width: fit-content;
}

.article-card h3 {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.article-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.article-meta {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

/* Help Resources Author */
.help-resources-author {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.help-resources-author h3 {
    margin-top: 0;
    margin-bottom: var(--space-md);
}

.help-resources-author p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.help-resources-author ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.help-resources-author a {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.help-resources-author a:hover {
    background: rgba(14, 165, 233, 0.2);
}

/* ==========================================================================
   Image Styles
   ========================================================================== */

/* Hero Background */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Section Images */
.section-image,
.wheel-image,
.bonus-preview-image,
.bonus-image,
.step-image,
.strategy-image,
.mobile-preview {
    margin: var(--space-xl) 0;
    text-align: center;
}

.section-image img,
.wheel-image img,
.bonus-preview-image img,
.bonus-image img,
.step-image img,
.strategy-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.section-image.centered img,
.wheel-image img {
    max-width: 500px;
}

.section-image figcaption,
.wheel-image figcaption,
.bonus-preview-image figcaption,
.bonus-image figcaption,
.step-image figcaption,
.strategy-image figcaption {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Mobile Preview */
.mobile-preview {
    float: right;
    margin: 0 0 var(--space-lg) var(--space-lg);
    max-width: 200px;
}

@media (max-width: 640px) {
    .mobile-preview {
        float: none;
        margin: var(--space-lg) auto;
        max-width: 250px;
    }
}

.mobile-preview img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Author Avatar with Image */
.author-avatar-xl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
}

/* Bonus Page Images */
.bonus-image {
    margin: var(--space-lg) 0 var(--space-xl);
}

.bonus-image img {
    width: 100%;
    max-width: 800px;
}

/* Strategy Images */
.strategy-image {
    margin-top: var(--space-xl);
}

.strategy-image img {
    max-width: 600px;
}

/* Section CTAs */
.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.section-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}
