/* ========================================
   FILE: styles.css
   Crazy Time Slovensko - Complete Styles
   ======================================== */

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
    /* Colors - Dark Theme */
    --bg-primary: #0a0a14;
    --bg-secondary: #12121f;
    --bg-tertiary: #1a1a2e;
    --bg-card: rgba(26, 26, 46, 0.7);
    --bg-card-hover: rgba(36, 36, 66, 0.8);
    
    /* Accent Colors */
    --color-primary: #8b5cf6;
    --color-primary-light: #a78bfa;
    --color-primary-dark: #7c3aed;
    --color-cyan: #00f0ff;
    --color-cyan-glow: rgba(0, 240, 255, 0.3);
    --color-magenta: #ff00aa;
    --color-magenta-glow: rgba(255, 0, 170, 0.3);
    --color-gold: #ffd700;
    --color-gold-glow: rgba(255, 215, 0, 0.3);
    
    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Segment Colors */
    --segment-1: #fbbf24;
    --segment-2: #3b82f6;
    --segment-5: #8b5cf6;
    --segment-10: #ef4444;
    --segment-cf: #f97316;
    --segment-ch: #22c55e;
    --segment-pa: #ec4899;
    --segment-ct: linear-gradient(90deg, #ef4444, #f97316, #fbbf24, #22c55e, #3b82f6, #8b5cf6);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    
    /* Border & Effects */
    --border-color: rgba(139, 92, 246, 0.2);
    --border-color-hover: rgba(139, 92, 246, 0.4);
    --glow-primary: 0 0 30px rgba(139, 92, 246, 0.4);
    --glow-cyan: 0 0 30px rgba(0, 240, 255, 0.4);
    --glow-magenta: 0 0 30px rgba(255, 0, 170, 0.4);
    
    /* Glassmorphism */
    --glass-bg: rgba(26, 26, 46, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* 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;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* MOBILE FIX: prevent horizontal scroll */
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden; /* MOBILE FIX: prevent horizontal scroll */
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 170, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

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

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

a:hover {
    color: var(--color-primary-light);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========================================
   Container
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-magenta) 100%);
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--bg-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--color-primary);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--color-cyan);
    border: 2px solid var(--color-cyan);
}

.btn-outline:hover {
    background: var(--color-cyan);
    color: var(--bg-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-nav {
    padding: 0.5rem 1.25rem;
}


.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 0, 170, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--color-cyan) 50%, var(--color-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-icon {
    font-size: 1.25rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.wheel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.wheel-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, var(--color-cyan-glow) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.wheel-image {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.wheel-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 240, 255, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-coin, .floating-chip {
    position: absolute;
    font-size: 2rem;
    animation: float-random 4s ease-in-out infinite;
}

.coin-1 { top: 10%; left: 5%; animation-delay: 0s; }
.coin-2 { top: 20%; right: 10%; animation-delay: 0.5s; }
.coin-3 { bottom: 30%; left: 10%; animation-delay: 1s; }
.chip-1 { bottom: 20%; right: 5%; animation-delay: 1.5s; }
.chip-2 { top: 40%; left: 5%; animation-delay: 2s; } /* FIXED: was left: -5% */

@keyframes float-random {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(10deg); }
    75% { transform: translateY(10px) rotate(-5deg); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-cta, .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .wheel-container {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .wheel-container {
        max-width: 250px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto !important;
        padding: 70px 0 1rem !important;
    }
    
    .hero-content {
        gap: 0 !important;
    }
    
    /* Hide wheel on mobile */
    .hero-visual {
        display: none !important;
    }
    
    .hero h1 {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .hero-badge {
        margin-bottom: 0.75rem !important;
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .hero-cta {
        margin-bottom: 1rem !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .hero-cta .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .hero-trust {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        justify-content: center !important;
    }
    
    .hero-trust .trust-item,
    .hero-trust-item {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    /* Hide floating elements on mobile */
    .floating-elements {
        display: none !important;
    }
    
    /* Hide scroll indicator on mobile */
    .hero-scroll {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 65px 0 0.75rem !important;
    }
    
    .hero h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-badge {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.7rem !important;
    }
    
    .hero-cta .btn {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    .hero-trust .trust-item,
    .hero-trust-item {
        font-size: 0.7rem !important;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2rem 0;
    }
}

section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-header.centered {
    justify-content: center;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.section-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-cyan);
}

.section-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

.section-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.cta-inline {
    margin-top: 2rem;
    text-align: center;
}

h2 {
    margin-bottom: 1.5rem;
}

/* ========================================
   Winners Section
   ======================================== */
.winners-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.winners-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--bg-tertiary);
}

.winner-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
    min-width: 180px;
    transition: all var(--transition-base);
}

.winner-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

.winner-card .winner-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.winner-card .winner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-card .winner-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.winner-card .winner-city {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.winner-card .winner-game {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.winner-card .winner-multiplier {
    font-size: 0.8rem;
    color: var(--color-gold);
}

.winner-card .winner-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-success);
    margin-top: 0.5rem;
}

.winner-card .winner-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Skeleton Loading */
.skeleton {
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skeleton-line {
    height: 12px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-line.short {
    width: 60%;
}

@media (max-width: 1024px) {
    .winners-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .winners-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Live Video Section
   ======================================== */
.live-section {
    background: var(--bg-primary);
}

.live-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-container {
    position: relative;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 20, 0.8);
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-overlay:hover {
    background: rgba(10, 10, 20, 0.6);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

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

.play-button {
    width: 80px;
    height: 80px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--bg-primary);
    transition: all var(--transition-base);
    box-shadow: var(--glow-cyan);
}

.play-button:hover {
    transform: scale(1.1);
}

.video-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 10, 20, 0.9);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    z-index: 10;
}

.live-indicator {
    color: #ef4444;
    font-weight: 600;
}

.live-content h3 {
    margin-bottom: 1rem;
}

.live-content .btn {
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .live-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Stats Section - UPDATED
   ======================================== */
.stats-section {
    background: var(--bg-secondary);
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.stats-section .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.stats-block {
    margin-bottom: 3rem;
}

.stats-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Spins Table */
.spins-table td:first-child {
    width: 50px;
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
}

.spins-table .segment-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spins-table .segment-icon {
    font-size: 1.25rem;
}

.spins-table .multiplier-cell {
    font-weight: 600;
}

.spins-table .multiplier-cell.has-mult {
    color: var(--color-gold);
}

.spins-table .total-cell {
    font-weight: 700;
    color: var(--color-success);
}

.spins-table .time-cell {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Statistics Table */
.statistics-table .segment-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.statistics-table .count-cell {
    font-weight: 700;
    font-size: 1.1rem;
}

.statistics-table .percentage-cell {
    font-weight: 600;
}

.statistics-table .expected-cell {
    color: var(--text-muted);
}

.statistics-table .deviation-cell {
    font-weight: 600;
}

.statistics-table .deviation-cell.positive {
    color: var(--color-success);
}

.statistics-table .deviation-cell.negative {
    color: var(--color-error);
}

.statistics-table .status-cell {
    font-weight: 600;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.status-badge.hot {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-badge.cold {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.status-badge.neutral {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
}

/* Big Wins Table */
.bigwins-table .rank-cell {
    width: 50px;
    text-align: center;
}

.bigwins-table .rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
}

.bigwins-table .rank-1 .rank-badge {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

.bigwins-table .rank-2 .rank-badge {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #000;
}

.bigwins-table .rank-3 .rank-badge {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: #fff;
}

.bigwins-table .bonus-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bigwins-table .bonus-icon {
    font-size: 1.5rem;
}

.bigwins-table .multiplier-cell {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-gold);
}

.bigwins-table .time-cell {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Big Wins Grid (Cards with Avatars)
   ======================================== */
.big-wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.big-win-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.big-win-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.big-win-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}

.big-win-card.rank-1 {
    border-color: var(--color-gold);
}

.big-win-card.rank-1::before {
    background: linear-gradient(90deg, #ffd700, #ffaa00);
}

.big-win-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.big-win-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.big-win-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-win-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.big-win-user {
    flex: 1;
    min-width: 0;
}

.big-win-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.big-win-city {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.big-win-rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--bg-tertiary);
    flex-shrink: 0;
}

.big-win-card.rank-1 .big-win-rank {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

.big-win-card.rank-2 .big-win-rank {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #000;
}

.big-win-card.rank-3 .big-win-rank {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: #fff;
}

.big-win-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.big-win-bonus {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.big-win-bonus-icon {
    font-size: 1.5rem;
}

.big-win-bonus-name {
    font-size: 0.85rem;
    font-weight: 500;
}

.big-win-multiplier {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
}

.big-win-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.big-win-amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-success);
}

.big-win-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Loading placeholder */
.loading-placeholder {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

/* Stats block intro */
.stats-block-intro {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ========================================
   Reviews Section Enhanced
   ======================================== */
.reviews-section {
    background: var(--bg-primary);
    padding: var(--space-3xl) 0;
}

.reviews-section h2 {
    margin-bottom: 1rem;
}

.reviews-section .section-intro {
    margin-bottom: 0.5rem;
}

.reviews-section > .container > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

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

.review-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.review-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    transition: opacity 0.3s ease;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}

.review-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-avatar-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info strong {
    display: block;
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-rating {
    font-size: 0.9rem;
}

.review-card blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.review-footer .favorite {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
}

.review-footer .verified {
    color: var(--color-success);
    font-weight: 500;
}

.review-footer .date {
    color: var(--text-muted);
}

/* ========================================
   SEO Content Section
   ======================================== */
.seo-content-section {
    background: var(--bg-primary);
    padding: var(--space-3xl) 0;
}

.seo-content-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.seo-content-section h3 {
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.seo-content-section p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1rem;
}

.seo-content-section p strong {
    color: var(--text-primary);
}

.seo-content-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .big-wins-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading state */
.loading-cell {
    text-align: center;
    padding: 2rem !important;
    color: var(--text-muted);
}

/* Stats notes */
.stats-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* Update info */
.stats-update-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.stats-update-info .live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.update-countdown {
    color: var(--text-muted);
}

/* Progress bar for segments */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.25rem;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

@media (max-width: 768px) {
    .stats-update-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-content p {
    margin-bottom: 1.25rem;
}

.about-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.info-card h4 {
    padding: 1rem 1.5rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
}

.info-table {
    width: 100%;
}

.info-table td {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.info-table td:first-child {
    color: var(--text-muted);
}

.info-table td:last-child {
    text-align: right;
}

.wheel-table-wrapper {
    margin-top: 3rem;
}

.wheel-table-wrapper h3 {
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-sidebar {
        position: static;
    }
}

/* ========================================
   Tables
   ======================================== */
.table-responsive {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.data-table, .casino-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass-bg);
}

.data-table th, .casino-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.data-table td, .casino-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.data-table tr:last-child td, .casino-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover, .casino-table tr:hover {
    background: var(--bg-card-hover);
}

.total-row {
    background: var(--bg-tertiary) !important;
}

.total-row td {
    border-top: 2px solid var(--border-color);
}

/* Casino Table Specific */
.casino-table tr.featured {
    background: rgba(139, 92, 246, 0.1);
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.casino-logo {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.casino-name {
    font-weight: 600;
}

.rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 600;
}

.rank-1 {
    background: linear-gradient(135deg, var(--color-gold) 0%, #ffa500 100%);
    color: var(--bg-primary);
}

.check {
    color: var(--color-success);
}

.rating {
    color: var(--color-gold);
    font-weight: 600;
}

/* Segment Badges */
.segment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.segment-1 { background: var(--segment-1); }
.segment-2 { background: var(--segment-2); color: white; }
.segment-5 { background: var(--segment-5); color: white; }
.segment-10 { background: var(--segment-10); color: white; }
.segment-cf { background: var(--segment-cf); }
.segment-ch { background: var(--segment-ch); }
.segment-pa { background: var(--segment-pa); color: white; }
.segment-ct { 
    background: var(--segment-ct); 
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Color Dots */
.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.color-dot.yellow { background: var(--segment-1); }
.color-dot.blue { background: var(--segment-2); }
.color-dot.purple { background: var(--segment-5); }
.color-dot.red { background: var(--segment-10); }
.color-dot.orange { background: var(--segment-cf); }
.color-dot.green { background: var(--segment-ch); }
.color-dot.pink { background: var(--segment-pa); }
.color-dot.rainbow { background: var(--segment-ct); }

/* ========================================
   Disclaimer Box
   ======================================== */
.disclaimer-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.disclaimer-icon {
    font-size: 1.25rem;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-warning);
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Bonus Games Section
   ======================================== */
.bonus-section {
    background: var(--bg-primary);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.bonus-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.bonus-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bonus-cf { background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%); }
.bonus-ch { background: linear-gradient(135deg, #22c55e 0%, #10b981 100%); }
.bonus-pa { background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); }
.bonus-ct { background: linear-gradient(135deg, #8b5cf6 0%, #00f0ff 50%, #ff00aa 100%); }

.bonus-icon {
    font-size: 4rem;
}

.bonus-content {
    padding: 1.5rem;
}

.bonus-content h3 {
    margin-bottom: 0.75rem;
}

.bonus-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Video Grid Section
   ======================================== */
.videos-section {
    background: var(--bg-secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-card .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--bg-tertiary);
}

.video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-placeholder:hover {
    background: var(--bg-card-hover);
}

.play-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.video-card h4 {
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   App Section
   ======================================== */
.app-section {
    background: var(--bg-primary);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-content h2 {
    margin-bottom: 1.5rem;
}

.app-badges {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.app-badge:hover {
    border-color: var(--color-primary);
    background: var(--bg-card-hover);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.badge-text strong {
    font-size: 0.95rem;
}

.app-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 240px;
    height: 480px;
    background: var(--bg-tertiary);
    border-radius: 36px;
    padding: 12px;
    border: 3px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-cyan) 100%);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.phone-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.phone-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

@media (max-width: 768px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
    
    .app-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* ========================================
   How to Play Section
   ======================================== */
.howto-section {
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
}

.step-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.step-card h4 {
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Payment Section
   ======================================== */
.payment-section {
    background: var(--bg-primary);
}

.payment-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.payment-logo {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================================
   Strategies Section
   ======================================== */
.strategies-section {
    background: var(--bg-secondary);
}

/* ========================================
   Summary Section
   ======================================== */
.summary-section {
    background: var(--bg-secondary);
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.pros h4, .cons h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pros ul, .cons ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pros li, .cons li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--color-error);
    font-weight: 700;
}

.summary-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    background: var(--bg-primary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    background: transparent;
    transition: all var(--transition-fast);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.footer-payments span {
    padding: 0.35rem 0.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.footer-bottom > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.responsible-gaming {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.responsible-gaming p {
    font-size: 0.85rem;
    color: var(--color-warning);
    margin: 0;
}

.responsible-gaming a {
    color: var(--color-warning);
    font-weight: 600;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-badges .badge {
    padding: 0.35rem 0.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links nav {
        align-items: center;
    }
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 100;
    box-shadow: var(--glow-primary);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--color-primary-light);
}

/* ========================================
   Utility Classes
   ======================================== */
.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;
}

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

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .navbar,
    .hero-visual,
    .back-to-top,
    .video-container,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        padding: 1rem 0;
    }
}
/* ============================================
   NAVIGATION CSS - CLEAN VERSION
   Add to END of styles.css
   OR replace all existing nav styles
   ============================================ */

/* ============================================
   NAVBAR BASE
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   LOGO
   ============================================ */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
    color: #fff;
}

.nav-logo-icon {
    font-size: 1.75rem;
}

.nav-logo-geo {
    color: #fbbf24;
}

/* ============================================
   DESKTOP MENU
   ============================================ */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.nav-link.active {
    color: #fbbf24;
}

.nav-chevron {
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-chevron {
    transform: rotate(180deg);
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    background: rgba(18, 18, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 1001;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.nav-dropdown-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    flex-shrink: 0;
}

.nav-dropdown-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.nav-dropdown-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* ============================================
   NAV ACTIONS
   ============================================ */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.btn-nav {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

/* ============================================
   HAMBURGER TOGGLE
   ============================================ */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.nav-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.99);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem 2rem;
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.nav-mobile-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-mobile-close:hover {
    background: rgba(255,255,255,0.15);
}

.nav-mobile-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-mobile-link {
    display: block;
    padding: 0.875rem 1rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-mobile-link:hover,
.nav-mobile-link:active {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.nav-mobile-link.active {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.nav-mobile-group {
    margin: 0.75rem 0;
    padding: 0.75rem 0 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile-group-title {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-mobile-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 1024px) {
    /* Hide desktop menu */
    .nav-menu {
        display: none !important;
    }
    
    /* Hide badge */
    .nav-badge {
        display: none !important;
    }
    
    /* Show hamburger */
    .nav-toggle {
        display: flex !important;
    }
    
    /* Smaller navbar */
    .navbar .container {
        height: 60px;
    }
}

@media (max-width: 480px) {
    /* Hide logo text on very small screens */
    .nav-logo-text {
        display: none;
    }
    
    /* Smaller button */
    .btn-nav {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   BODY LOCK WHEN MENU OPEN
   ============================================ */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/* ============================================
   FOOTER - UNIVERSAL v2.0
   ============================================ */
.site-footer {
    background: linear-gradient(to bottom, #0a0a0f 0%, #0f0f18 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 4rem;
    margin-top: 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Brand */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: #fff;
}

.footer-logo-icon {
    font-size: 2rem;
}

.footer-logo-geo {
    color: #fbbf24;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #000;
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.footer-links-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #fbbf24;
    padding-left: 5px;
}

/* Payments */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.footer-payments-title {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-payments-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* Responsible Gaming */
.footer-responsible {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-responsible-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
}

.footer-responsible-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.footer-responsible-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-responsible-text strong {
    color: #ef4444;
}

.footer-responsible-text a {
    color: #ef4444;
    text-decoration: none;
}

.footer-responsible-text a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.25rem;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-badge {
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding-top: 2.5rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }
    
    .footer-payments {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-responsible-content {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================
   BACK TO TOP BUTTON v2.0
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   RELATED ARTICLES SECTION
   ============================================ */
.related-articles {
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(to bottom, transparent, rgba(251,191,36,0.03));
}

.related-articles h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.related-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-card:hover {
    background: rgba(251,191,36,0.15);
    border-color: rgba(251,191,36,0.3);
    color: #fbbf24;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .related-articles {
        padding: 2rem 0;
        margin-top: 2rem;
    }
}

/* ============================================
   MOBILE MENU - NEW CLEAN VERSION
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.99);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.2);
}

.mobile-menu-body {
    flex: 1;
    padding: 1rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu-link {
    display: block;
    padding: 0.875rem 1rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.mobile-menu-group {
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-group-title {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.mobile-menu-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ============================================
   CONTENT LINKS - Internal Contextual Links
   ============================================ */
.content-link {
    color: #fbbf24;
    text-decoration: none;
    border-bottom: 1px dotted rgba(251, 191, 36, 0.5);
    transition: all 0.3s ease;
}

.content-link:hover {
    color: #f59e0b;
    border-bottom-color: #f59e0b;
    border-bottom-style: solid;
}

/* Related Links Section */
.related-links {
    padding: 3rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.related-links h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.related-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-card:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.related-card span:first-child {
    font-size: 1.5rem;
}

.related-card div div:first-child {
    font-weight: 600;
}

.related-card div div:last-child {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.related-card:hover div div:last-child {
    color: rgba(251, 191, 36, 0.8);
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .related-links {
        padding: 2rem 0;
        margin: 1rem 0;
    }
}

/* ============================================
   NAVBAR LOGO IMAGE
   ============================================ */
.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .nav-logo-img {
        width: 36px;
        height: 36px;
    }
}

/* Footer Logo Image */
.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
}

/* ============================================
   FONT FALLBACK - show text immediately
   ============================================ */
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   DYNAMIC REVIEWS ANIMATIONS
   ============================================ */
.reviews-grid {
    transition: opacity 0.3s ease-in-out;
}

.review-card {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:nth-child(1) { animation-delay: 0s; }
.review-card:nth-child(2) { animation-delay: 0.1s; }
.review-card:nth-child(3) { animation-delay: 0.2s; }
.review-card:nth-child(4) { animation-delay: 0.3s; }

/* Reviews loading indicator */
.reviews-grid:empty::before {
    content: 'Načítavam recenzie...';
    display: block;
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Review rotation indicator */
.reviews-section .section-subtitle::after {
    content: ' 🔄';
    animation: rotate 2s linear infinite;
    display: inline-block;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   AI REVIEWS BADGE & COUNTDOWN
   ============================================ */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

#reviewCountdown {
    font-variant-numeric: tabular-nums;
}

/* Review card loading shimmer */
.review-card.loading {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.03) 0%, 
        rgba(255,255,255,0.08) 50%, 
        rgba(255,255,255,0.03) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   EXTENDED REVIEW CARDS - for longer reviews
   ============================================ */
.review-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    min-height: 80px;
    margin: 1rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.review-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card blockquote {
        font-size: 0.9rem;
        min-height: auto;
    }
}

/* ============================================
   AI PREDICTIONS & TIP OF DAY STYLES
   ============================================ */

/* Predictions Container */
#aiPredictions {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    transition: opacity 0.3s ease;
}

.predictions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.predictions-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #fff;
}

.ai-source-badge {
    padding: 4px 12px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 20px;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
}

.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.prediction-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.prediction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.prediction-bonus {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.bonus-icon {
    font-size: 1.5rem;
}

.bonus-name {
    font-weight: 600;
    color: #fff;
}

.prediction-prob {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.prediction-reason {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.prediction-confidence {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.confidence-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.prediction-confidence span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    min-width: 35px;
}

/* Hot & Cold Segments */
.segments-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.segment-badge {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
}

.segment-badge.hot {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.segment-badge.cold {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.segment-icon {
    font-size: 2rem;
}

.segment-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.segment-info strong {
    color: #fff;
    font-size: 0.9rem;
}

.segment-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Recommendation Box */
.recommendation-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.recommendation-header span {
    font-size: 1.25rem;
}

.recommendation-header strong {
    color: #fbbf24;
    font-size: 1rem;
}

.recommendation-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Tip of Day */
#tipOfDay {
    transition: opacity 0.3s ease;
}

.tip-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.tip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tip-header h3 {
    margin: 0;
    color: #22c55e;
    font-size: 1.25rem;
}

.tip-day {
    background: rgba(34, 197, 94, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #22c55e;
    text-transform: capitalize;
}

.tip-main {
    margin-bottom: 1rem;
}

.tip-text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.tip-reason {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.tip-focus {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.focus-icon {
    font-size: 2rem;
}

.focus-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.focus-info strong {
    color: #fff;
}

.focus-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.quick-tips {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-tips li {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.tip-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.tip-source {
    text-align: right;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .predictions-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .segments-row {
        flex-direction: column;
    }
    
    .segment-badge {
        min-width: 100%;
    }
    
    .quick-tips {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .predictions-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.predictions-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Predictions Section */
.predictions-section,
.tip-section {
    padding: 4rem 0;
}

.predictions-section h2,
.tip-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.predictions-section .section-subtitle,
.tip-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RELATED GAMES SECTION
   ============================================ */
.related-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05));
}

.related-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.related-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.related-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.related-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.related-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.related-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.related-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    color: #fff;
}

.related-link.primary {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

.related-link.primary:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
}

.related-link.internal {
    border-color: rgba(34, 197, 94, 0.3);
}

.related-link.internal:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.disclaimer-box {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INLINE EXTERNAL LINKS
   ============================================ */
.inline-external {
    color: #fbbf24;
    text-decoration: none;
    border-bottom: 1px dashed rgba(251, 191, 36, 0.4);
    transition: all 0.2s ease;
}

.inline-external:hover {
    color: #f59e0b;
    border-bottom-color: #f59e0b;
}

.inline-external::after {
    content: " ↗";
    font-size: 0.75em;
    opacity: 0.7;
}

/* ============================================
   STATISTICS SEGMENTS GRID
   ============================================ */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.segment-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.segment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hot-cold-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.total-spins-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.total-spins-box .label {
    color: rgba(255, 255, 255, 0.8);
}

.total-spins-box .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
}

/* ========================================
   INSIDER TIP BOXES
   ======================================== */
.insider-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(247, 183, 49, 0.08);
    border: 1px solid rgba(247, 183, 49, 0.3);
    border-left: 4px solid #f7b731;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.insider-tip .tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.insider-tip .tip-content {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.insider-tip .tip-content strong {
    color: #f7b731;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.insider-tip .tip-content em {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

@media (max-width: 640px) {
    .insider-tip {
        flex-direction: column;
        padding: 1rem;
    }
    
    .insider-tip .tip-content {
        font-size: 0.875rem;
    }
}

/* ========================================
   SILO NAVIGATION - Internal Linking
   ======================================== */
.silo-nav {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(247, 183, 49, 0.05);
    border: 1px solid rgba(247, 183, 49, 0.2);
    border-radius: 16px;
}

.silo-nav h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f7b731;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.silo-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.silo-links.horizontal {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .silo-links,
    .silo-links.horizontal {
        grid-template-columns: 1fr;
    }
}

.silo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.silo-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 183, 49, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.silo-link.silo-featured {
    border-color: rgba(247, 183, 49, 0.4);
    background: rgba(247, 183, 49, 0.08);
}

.silo-link.silo-featured:hover {
    border-color: #f7b731;
    box-shadow: 0 4px 20px rgba(247, 183, 49, 0.2);
}

.silo-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.silo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.silo-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.silo-text small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Image SEO optimization */
img[loading="lazy"] {
    content-visibility: auto;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ========================================
   AUTHOR PAGE & AUTHOR BOX
   ======================================== */

/* Author Hero */
.author-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, rgba(247, 183, 49, 0.05) 0%, transparent 100%);
}

.author-hero-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.author-photo-wrapper {
    position: relative;
}

.author-photo {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(247, 183, 49, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.author-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f7b731, #ff6b9d);
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.author-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f7b731;
    margin-bottom: 0.5rem;
}

.author-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.author-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.author-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f7b731;
}

.author-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.author-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    border-left: 3px solid #f7b731;
    line-height: 1.8;
}

/* Author Bio */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.bio-main h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #f7b731;
}

.bio-main h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.bio-main p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.bio-highlight {
    background: rgba(247, 183, 49, 0.08);
    border: 1px solid rgba(247, 183, 49, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.bio-highlight h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.bio-highlight ul {
    list-style: none;
    padding: 0;
}

.bio-highlight li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.bio-highlight li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
}

.bio-warning {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    margin-top: 2rem;
}

.bio-warning .warning-icon {
    font-size: 1.5rem;
}

.bio-warning p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
}

/* Sidebar */
.bio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.sidebar-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.article-list {
    list-style: none;
    padding: 0;
}

.article-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-list li:last-child {
    border-bottom: none;
}

.article-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.article-list a:hover {
    color: #f7b731;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.375rem 0.75rem;
    background: rgba(247, 183, 49, 0.1);
    border: 1px solid rgba(247, 183, 49, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Credentials */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.credential-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.credential-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.credential-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ========================================
   AUTHOR BOX (for articles)
   ======================================== */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 3rem 0;
}

.author-box-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(247, 183, 49, 0.3);
    flex-shrink: 0;
}

.author-box-content {
    flex: 1;
}

.author-box-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.author-box-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-box-name a {
    color: #fff;
}

.author-box-name a:hover {
    color: #f7b731;
}

.author-box-title {
    font-size: 0.85rem;
    color: #f7b731;
    margin-bottom: 0.75rem;
}

.author-box-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-box-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f7b731;
}

.author-box-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .author-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-photo-wrapper {
        margin: 0 auto;
        max-width: 250px;
    }
    
    .author-stats {
        justify-content: center;
    }
    
    .author-quote {
        border-left: none;
        border-top: 3px solid #f7b731;
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .author-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .author-stat {
        flex: 1 1 45%;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-box-photo {
        margin: 0 auto;
    }
}

/* ============================================
   MYTH-BUSTING SECTION
   ============================================ */

.myth-busting-section {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.05));
    border-top: 2px solid rgba(239, 68, 68, 0.2);
    border-bottom: 2px solid rgba(239, 68, 68, 0.2);
}

.myth-hero {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3rem;
}

.myth-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.myth-hero h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
    color: #fff;
}

.myth-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.myths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.myth-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.myth-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.2);
}

.myth-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.myth-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.myth-explanation p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.myth-explanation strong {
    color: #fbbf24;
}

.myth-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.myth-list li {
    margin-bottom: 0.5rem;
}

.myth-proof, .myth-math {
    background: rgba(0,0,0,0.3);
    border-left: 4px solid #8b5cf6;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1.25rem 0;
}

.myth-proof strong, .myth-math strong {
    color: #a78bfa;
    display: block;
    margin-bottom: 0.5rem;
}

/* What Works Section */
.what-works {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.08));
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.what-works h3 {
    text-align: center;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.works-item {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.works-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.works-item h4 {
    color: #22c55e;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.works-item p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Warning Box */
.myth-warning {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

.myth-warning .warning-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.myth-warning .warning-content h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.myth-warning ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.myth-warning ul li {
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 1.02rem;
}

/* Responsive */
@media (max-width: 768px) {
    .myths-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .myth-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .myth-card {
        padding: 1.5rem;
    }
}


/* ========================================
   MOBILE OVERFLOW FIXES
   Critical: Prevent horizontal scroll on mobile
   ======================================== */

/* Universal Mobile Container Fix */
@media (max-width: 768px) {
    
    /* Ensure all containers stay within viewport */
    * {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    /* Container safety */
    .container {
        padding: 0 1rem;
        overflow-x: hidden;
    }
    
    /* Tables: Force scrollable wrapper */
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 1rem 0;
    }
    
    table, .data-table, .casino-table, .payment-table, 
    .spins-table, .statistics-table, .strategy-table {
        width: 100%;
        min-width: 600px; /* Force horizontal scroll for tables */
        display: table;
        overflow-x: auto;
    }
    
    /* Long text & URLs */
    p, li, div, span, td, th {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Links & URLs in FAQ */
    a {
        word-break: break-all; /* Break long URLs */
        overflow-wrap: anywhere;
    }
    
    /* FAQ answers with lists */
    .faq-answer ul {
        padding-left: 1.25rem;
        overflow-x: hidden;
    }
    
    .faq-answer ul li {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Images */
    img, video, iframe, canvas, svg {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    /* Prevent wide elements */
    pre, code {
        max-width: 100%;
        overflow-x: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
    }
    
    /* Hero & Large sections */
    .hero-section, .about-section, .casinos-section,
    .payment-section, .strategies-section, .faq-section {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Cards & Boxes */
    .card, .feature-card, .bonus-card, .step-card,
    .casino-info, .info-card {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Buttons & CTAs */
    .btn, .cta-inline a {
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Stats & Numbers */
    .stat-number, .highlight {
        word-break: normal; /* Don't break numbers */
    }
    
    /* Grids */
    .features-grid, .bonus-grid, .steps-grid,
    .team-grid, .related-grid {
        grid-template-columns: 1fr;
        overflow-x: hidden;
    }
    
    /* Footer */
    footer, .footer-content, .footer-bottom {
        overflow-x: hidden;
        width: 100%;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    /* Navigation */
    .navbar, .navbar .container {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

/* Extra small devices (320px - 480px) */
@media (max-width: 480px) {
    
    /* Even more aggressive fixes for tiny screens */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Tables: smaller min-width */
    table, .data-table, .casino-table {
        min-width: 500px;
        font-size: 0.875rem;
    }
    
    /* Smaller fonts to prevent overflow */
    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Smaller buttons */
    .btn {
        font-size: 0.85rem;
        padding: 0.625rem 1rem;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

/* Landscape phone orientation fix */
@media (max-width: 768px) and (orientation: landscape) {
    body {
        overflow-x: hidden;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
}


/* Info Table Mobile Fix */
@media (max-width: 768px) {
    .info-table {
        width: 100% !important;
        max-width: 100%;
        font-size: 0.875rem;
    }
    
    .info-table td {
        padding: 0.5rem 0.75rem;
        word-break: break-word;
    }
    
    .info-table td:first-child {
        max-width: 120px;
        word-break: normal;
    }
    
    .info-card {
        overflow-x: hidden;
        width: 100%;
    }
    
    .about-sidebar {
        overflow-x: hidden;
        width: 100%;
    }
}


/* Critical: Section Padding Mobile Fix */
@media (max-width: 768px) {
    /* All sections */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Container within sections */
    section > .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;

/* ========================================
   FINAL MOBILE SAFETY FIXES
   ======================================== */

/* Ensure nothing exceeds viewport width */
@media (max-width: 768px) {
    
    /* Viewport overflow prevention */
    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        position: relative;
    }
    
    /* Main container safety */
    main, #app {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* All sections safe */
    section {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Grid layouts */
    .grid, [class*="-grid"] {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Flex layouts */
    .flex, [class*="flex-"] {
        flex-wrap: wrap;
        overflow-x: hidden;
    }
    
    /* Specific problem elements */
    .hero-section, .navbar, .footer,
    .about-section, .casinos-section,
    .payment-section, .faq-section {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
}

/* Extra safety for very small screens */
@media (max-width: 480px) {
    
    /* Reduce container padding even more */
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Smaller typography to prevent overflow */
    body {
        font-size: 0.9375rem; /* 15px */
    }
    
    /* Tables even more compact */
    .data-table, .casino-table {
        font-size: 0.8125rem; /* 13px */
    }
    
    .data-table th, .casino-table th {
        padding: 0.5rem 0.375rem;
    }
    
    .data-table td, .casino-table td {
        padding: 0.625rem 0.375rem;
    }
}

/* iOS Safari viewport fix */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        body {
            min-height: -webkit-fill-available;
        }
    }
}

/* Landscape orientation safety */
@media (max-width: 768px) and (orientation: landscape) {
    body {
        overflow-x: hidden !important;
    }
}


/* ========================================
   CRITICAL MOBILE OVERFLOW FIX v2
   Eliminates ALL horizontal scroll sources
   ======================================== */

@media (max-width: 768px) {
    
    /* Universal overflow prevention */
    *, *::before, *::after {
        max-width: 100vw !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
    
    /* Core containers */
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative !important;
    }
    
    /* Main & App */
    main, #app, [role="main"] {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    /* Header & Hero - CRITICAL */
    header, .hero, header.hero {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .hero-content {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    .hero-text {
        max-width: 100% !important;
    }
    
    /* Container */
    .container {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* All sections */
    section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Section inner containers */
    section > .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Grids & Flex */
    .grid, [class*="-grid"],
    .flex, [class*="flex-"] {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    /* Tables */
    table {
        max-width: 100% !important;
    }
    
    .table-responsive {
        overflow-x: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Images & Media */
    img, video, iframe, canvas, svg {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Text elements */
    p, h1, h2, h3, h4, h5, h6, li, div, span {
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    
    /* Links */
    a {
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
    }
    
    /* Footer */
    footer {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    /* Navbar */
    .navbar, nav {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Cards */
    .card, [class*="-card"] {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
}

/* Extra aggressive for very small screens */
@media (max-width: 480px) {
    * {
        max-width: 100vw !important;
    }
    
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}

