:root {
    /* Color Palette - Dark Premium */
    --bg-dark: #181825;
    /* Lighter "Deep Space" Blue */
    --bg-card: #20202e;
    /* Reduced contrast against new bg */
    --bg-card-hover: #2a2a3a;
    --accent-primary: #6366f1;
    /* Electric Indigo */
    --accent-secondary: #ec4899;
    /* Hot Pink */
    --accent-glow: rgba(99, 102, 241, 0.5);

    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    --border-color: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --gradient-dark: linear-gradient(to bottom, var(--bg-dark), #0f0f16);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --glass-bg: rgba(19, 19, 31, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    --glow-card: 0 0 20px rgba(99, 102, 241, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.08) 0%, transparent 25%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Header */
.site-header {
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

/* Region Selector */
#region-select {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
}

#region-select:focus {
    border-color: var(--accent-primary);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards & Grid */
.features-grid,
.grid-sports {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card,
.sport-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.card:hover,
.sport-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--glow-card);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.sport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.sport-icon {
    font-family: 'Material Icons';
    /* Assuming Material Icons usage based on old classes */
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.sport-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Footer */
.site-footer {
    border-top: var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    background: rgba(10, 10, 15, 0.5);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero>*,
.features-grid>*,
.grid-sports>* {
    animation: fadeIn 0.6s ease-out forwards;
}

.features-grid>*:nth-child(2) {
    animation-delay: 0.2s;
}

.features-grid>*:nth-child(3) {
    animation-delay: 0.4s;
}

/* Hamburger toggle button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0.5rem 2rem 1.5rem;
        flex-direction: column;
        gap: 0;
        border-bottom: var(--glass-border);
        z-index: 99;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
        color: var(--text-secondary);
    }

    .nav-links a:hover {
        color: var(--text-primary);
    }

    .region-selector {
        order: 2;
    }
}

/* --- Added for Results & Selector Pages --- */

/* Selection Tags */
.selection-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.selection-tag,
.team-tag {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-tag button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.team-tag button:hover {
    color: white;
}

/* Recommendation Cards */
.recommendations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.recommendation-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendation-card.recommended {
    border-color: var(--accent-primary);
    background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.05), rgba(19, 19, 31, 0.8));
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
}

.recommended-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rec-coverage {
    text-align: left;
}

.coverage-percent {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.coverage-label {
    display: block;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rec-cost {
    text-align: right;
}

.cost-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.cost-label {
    color: var(--text-secondary);
}

/* Services List in Card */
.services-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-logo-small {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.service-details {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-weight: 600;
    color: white;
}

.service-tier {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.service-price {
    font-weight: 600;
    color: white;
    margin-right: 1.5rem;
}

/* Coverage Details */
.rec-coverage-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
}

.coverage-section h5 {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.coverage-section ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.coverage-section li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.coverage-type.full {
    color: #4ade80;
    /* Green */
    font-size: 0.75rem;
    background: rgba(74, 222, 128, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.coverage-type.partial {
    color: #facc15;
    /* Yellow */
    font-size: 0.75rem;
    background: rgba(250, 204, 21, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Accordion in Selector */
.sport-accordion-item {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.sport-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.sport-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.sport-name {
    font-size: 1.2rem;
    font-weight: 600;
    flex-grow: 1;
    text-align: left;
}

.selected-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-right: 1rem;
}

.accordion-arrow {
    background: rgba(255, 255, 255, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.sport-header.active .accordion-arrow {
    transform: rotate(45deg);
    background: var(--accent-primary);
}

.sport-leagues {
    display: none;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sport-leagues.open {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding-top: 1.5rem;
}

.league-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.league-checkbox:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
}

.league-checkbox input:checked+.checkbox-custom {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.league-checkbox input:checked+.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.league-checkbox input {
    display: none;
}

/* --- Form Inputs & Search --- */
input[type="text"],
input[type="number"],
select {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

input:focus,
select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
    outline: none;
}

/* Team Search Specifics */
.team-search {
    margin-bottom: 1rem;
}

.team-search input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-search input:focus {
    background: rgba(255, 255, 255, 0.08);
}

/* Budget Input adjustments */
.budget-input {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.budget-input input {
    width: 120px;
    margin: 0 0.5rem;
    text-align: center;
}

/* === SEO Pages === */
.seo-page {
    padding: 3rem 0;
}

.seo-page .container {
    max-width: 900px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

/* SEO Hero */
.seo-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.seo-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.seo-page .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-cta .btn {
    margin: 0 0.5rem;
}

/* Quick Answer Box */
.quick-answer {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.quick-answer h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

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

.quick-card {
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: var(--glass-border);
}

.quick-label {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-card strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.quick-price {
    display: block;
    font-size: 1.1rem;
    color: #4ade80;
    font-weight: 700;
}

.quick-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

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

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass-bg);
    border-radius: 12px;
    overflow: hidden;
    border: var(--glass-border);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.comparison-table tbody tr {
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.service-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-cell img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.coverage-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.coverage-badge.coverage-full {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.coverage-badge.coverage-partial {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
}

.coverage-badge.coverage-blackouts {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
}

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

/* Service Detail Cards */
.service-detail {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: var(--glass-border);
}

.service-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-meta .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

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

.pros h4 {
    color: #4ade80;
}

.cons h4 {
    color: #f87171;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li,
.cons li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

.pros li::before {
    content: "✓ ";
    color: #4ade80;
}

.cons li::before {
    content: "✗ ";
    color: #f87171;
}

/* FAQ Section */
.faq-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: var(--glass-border);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Related Content */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-card {
    display: block;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

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

.related-sport {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.related-card strong {
    color: var(--accent-primary);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.cta-section h2 {
    border: none;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section .btn {
    background: white;
    color: var(--accent-primary);
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

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

/* Affiliate Disclosure (in-content) */
.seo-page .affiliate-disclosure {
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #facc15;
    margin: 2rem 0;
}

/* Article Footer */
.article-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Watch Index Page */
.watch-index .seo-hero {
    margin-bottom: 3rem;
}

.sports-guides {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sport-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.sport-section h2 .material-icons {
    color: var(--accent-primary);
}

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

.league-guide-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.league-guide-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: var(--glow-card);
}

.league-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.guide-label {
    font-size: 0.85rem;
    color: var(--accent-primary);
}

/* SEO Page Responsive */
@media (max-width: 768px) {
    .seo-hero h1 {
        font-size: 1.75rem;
    }

    .quick-answer-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
    
    .leagues-grid {
        grid-template-columns: 1fr;
    }
}

/* Compare page CTA row */
.comparison-table .cta-row td {
    padding: 1.25rem 1rem;
    background: rgba(99, 102, 241, 0.04);
    border-top: 2px solid rgba(99, 102, 241, 0.2);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: var(--glass-border);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-banner-content a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s, border-color 0.2s;
}

.btn-cookie-reject:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}