/**
 * iGaming Overview Stylesheet
 * Boyd Digital Blue + OddChecker-inspired data comparison design
 * Primary Color: #0066CC (Boyd Digital Blue)
 */

/* ===================================
   CSS RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Boyd Digital Brand Colors */
    --boyd-blue: #0066CC;
    --boyd-blue-dark: #004C99;
    --boyd-blue-light: #3385DB;
    
    /* AI Platform Colors */
    --google-blue: #4285F4;
    --chatgpt-green: #10A37F;
    --claude-orange: #D97757;
    
    /* UI Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-lighter: #F1F3F5;
    --border-light: #E1E4E8;
    --border-medium: #D1D5DB;
    
    /* Text Colors */
    --text-dark: #1A1F36;
    --text-medium: #4A5568;
    --text-light: #718096;
    
    /* Status Colors */
    --success-green: #00C853;
    --warning-amber: #FFC107;
    --error-red: #DC3545;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    color: var(--boyd-blue);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--boyd-blue-dark);
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.logo-highlight {
    color: var(--boyd-blue);
}

.uk-badge {
    display: inline-block;
    background: var(--boyd-blue);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
    vertical-align: super;
    font-weight: 600;
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.header-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--boyd-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--boyd-blue-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--boyd-blue);
    border: 2px solid var(--boyd-blue);
}

.btn-secondary:hover {
    background: var(--boyd-blue);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--boyd-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-link:hover {
    color: var(--boyd-blue-dark);
    transform: translateX(3px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--boyd-blue) 0%, var(--boyd-blue-dark) 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl) auto;
}

.stats-ticker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   AI PLATFORMS SECTION
   =================================== */
.ai-platforms {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dark);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.platform-card {
    padding: var(--spacing-lg);
    background: var(--bg-lighter);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md) auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
}

.platform-icon.google {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.platform-icon.chatgpt {
    background: linear-gradient(135deg, #10A37F 0%, #0D8B6E 100%);
}

.platform-icon.claude {
    background: linear-gradient(135deg, #D97757 0%, #C15A35 100%);
}

.platform-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.platform-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ===================================
   COMPARISON GRID (OddChecker Style)
   =================================== */
.comparison-grid {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.filters {
    display: flex;
    gap: var(--spacing-sm);
}

.filter-select {
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-select:hover {
    border-color: var(--boyd-blue);
}

.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--bg-lighter);
}

.comparison-table th {
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-medium);
    border-bottom: 2px solid var(--border-light);
}

.comparison-table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.operator-row:hover {
    background: var(--bg-lighter);
}

.operator-col {
    width: 25%;
}

.score-col {
    width: 12%;
}

.platform-col {
    width: 15%;
}

.mentions-col {
    width: 12%;
}

.action-col {
    width: 10%;
    text-align: right;
}

/* Operator Info */
.operator-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.operator-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--boyd-blue);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-placeholder {
    display: block;
}

.operator-details {
    display: flex;
    flex-direction: column;
}

.operator-details strong {
    font-size: 1rem;
    color: var(--text-dark);
}

.license-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--success-green);
    font-weight: 600;
}

/* Score Badge */
.score-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
}

.score-excellent {
    background: rgba(0, 200, 83, 0.1);
    color: var(--success-green);
}

.score-good {
    background: rgba(0, 102, 204, 0.1);
    color: var(--boyd-blue);
}

.score-average {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning-amber);
}

/* Platform Scores */
.platform-label {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.platform-label.google {
    background: var(--google-blue);
}

.platform-label.chatgpt {
    background: var(--chatgpt-green);
}

.platform-label.claude {
    background: var(--claude-orange);
}

.platform-score {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.score-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-lighter);
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.score-fill.google {
    background: var(--google-blue);
}

.score-fill.chatgpt {
    background: var(--chatgpt-green);
}

.score-fill.claude {
    background: var(--claude-orange);
}

.score-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-medium);
    min-width: 45px;
}

.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-lg);
}

.results-count {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--boyd-blue) 0%, var(--boyd-blue-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cta-feature svg {
    flex-shrink: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.footer-brand .highlight {
    color: var(--boyd-blue-light);
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
}

.social-links a {
    color: var(--boyd-blue-light);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--boyd-blue-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===================================
   WHATSAPP STICKY BUTTON
   =================================== */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* ===================================
   LEADERBOARD SECTION
   =================================== */
.leaderboard-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
}

.leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.leaderboard-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.leaderboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.leaderboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--boyd-blue), var(--boyd-blue-light));
}

.leaderboard-card.rank-1::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.leaderboard-card.rank-2::before {
    background: linear-gradient(90deg, #C0C0C0, #A8A8A8);
}

.leaderboard-card.rank-3::before {
    background: linear-gradient(90deg, #CD7F32, #B8860B);
}

.leaderboard-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.leaderboard-rank.rank-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.leaderboard-rank.rank-2 {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: white;
}

.leaderboard-rank.rank-3 {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    color: white;
}

.leaderboard-operator {
    margin-bottom: var(--spacing-md);
}

.leaderboard-operator-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.leaderboard-domain {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.leaderboard-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.leaderboard-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--bg-lighter);
    border-radius: var(--radius-sm);
}

.leaderboard-stat-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

.leaderboard-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--boyd-blue);
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--boyd-blue), var(--boyd-blue-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-lighter);
}

.faq-container {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--boyd-blue);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--boyd-blue);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===================================
   SEO CONTENT SECTION
   =================================== */
.seo-content {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.seo-content-block {
    background: var(--bg-lighter);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.seo-content-block h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.seo-content-block p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.seo-content-block ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.seo-content-block li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.seo-content-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--boyd-blue);
    font-weight: 700;
}

/* ===================================
   MOBILE TABLE IMPROVEMENTS
   =================================== */
.mobile-table-wrapper {
    position: relative;
}

.mobile-scroll-hint {
    display: none;
    background: linear-gradient(90deg, transparent, rgba(0,102,204,0.1), transparent);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--boyd-blue);
    font-weight: 600;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .mobile-scroll-hint {
        display: block;
    }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .oddchecker-table {
        font-size: 0.8rem;
    }
    
    .oddchecker-table th.question-col {
        min-width: 200px;
        width: 200px;
    }
    
    .operator-header {
        padding: 0.5rem;
    }
    
    .operator-logo-img {
        width: 32px;
        height: 32px;
    }
    
    .operator-name {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-ticker {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Table Styles */
    .oddchecker-table {
        font-size: 0.75rem;
    }
    
    .oddchecker-table th {
        padding: 0.75rem 0.5rem;
    }
    
    .oddchecker-table th.question-col {
        min-width: 150px;
        width: 150px;
        font-size: 0.75rem;
    }
    
    .question-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .question-category {
        font-size: 0.65rem;
    }
    
    .operator-header {
        padding: 0.5rem 0.25rem;
    }
    
    .operator-logo-img {
        width: 28px;
        height: 28px;
    }
    
    .operator-name {
        font-size: 0.65rem;
    }
    
    .ai-indicators {
        gap: 0.25rem;
    }
    
    .ai-indicator {
        width: 20px;
        height: 20px;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-sm);
    }
    
    .platform-col {
        width: 18%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: var(--spacing-md);
    }
    
    .faq-answer-content {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .stats-ticker {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .operator-logo {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .score-bar {
        display: none;
    }
    
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .oddchecker-table th.question-col {
        min-width: 120px;
        width: 120px;
    }
    
    .operator-header {
        min-width: 60px;
    }
    
    .operator-logo-img {
        width: 24px;
        height: 24px;
    }
    
    .operator-name {
        display: none;
    }
    
    .ai-indicator {
        width: 18px;
        height: 18px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .leaderboard-rank {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }