:root {
    --bg-primary: #050508; /* Deep rich black */
    --bg-secondary: #0d0d12; /* Dark obsidian grey */
    --surface-light: #121218; /* Glossy dark surface */
    --surface-dark: #07070a; /* Premium deep surface */
    --accent-primary: #dc2626; /* Crimson Red */
    --accent-secondary: #f87171; /* Glossy Light Rose-Red */
    --accent-tertiary: #ff2a2a; /* Vibrant Neon Red */
    --text-light: #f8fafc;
    --text-dark: #cbd5e1; /* High contrast silver-grey for dark mode */
    --text-muted: #94a3b8;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --border-radius-sharp: 4px;
    --border-radius-med: 12px;
    --transition-speed: 0.35s;
    
    /* Glossy & Glassmorphism Tokens */
    --glass-bg: rgba(18, 18, 24, 0.7);
    --glass-border: rgba(255, 42, 42, 0.15);
    --glow-red: 0 8px 32px 0 rgba(220, 38, 38, 0.15);
    --glossy-sheen: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Keyframes for futuristic gloss and animations */
@keyframes fluidGlow {
    0%, 100% {
        box-shadow: 0 8px 32px 0 rgba(220, 38, 38, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 42, 42, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px 0 rgba(255, 42, 42, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 42, 42, 0.45);
    }
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 42, 42, 0.2); }
    50% { text-shadow: 0 0 25px rgba(255, 42, 42, 0.6); }
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 50% -10%, rgba(220, 38, 38, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 40%, rgba(220, 38, 38, 0.04) 0%, transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.4rem;
    position: relative;
    padding-bottom: 14px;
    color: var(--text-light);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-tertiary), transparent);
    border-radius: 2px;
}

.dark-section h2::after {
    background: linear-gradient(90deg, var(--accent-primary), transparent);
}

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

/* Helper Classes */
.text-light { color: var(--text-light) !important; }
.text-dark { color: var(--bg-primary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-green { color: #22c55e !important; } /* Kept green for analytical success indicator */
.text-orange { color: var(--accent-secondary) !important; }
.accent-orange { color: var(--accent-tertiary); }
.font-bold { font-weight: 700; }

/* Main Container spacing */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

.dark-section {
    background-color: var(--bg-secondary);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 42, 42, 0.1);
    border-bottom: 1px solid rgba(255, 42, 42, 0.1);
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.15rem;
    max-width: 700px;
    color: var(--text-muted);
}

/* Dynamic Fluid, Glossy & Transparent Navigation Header */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--glass-border);
    position: sticky;
    top: 16px;
    z-index: 1000;
    margin: 1rem 1.5rem 0 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    animation: fluidGlow 6s infinite ease-in-out;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: 1px;
}

.logo-brand .accent-orange {
    color: var(--accent-tertiary);
    animation: titlePulse 4s infinite ease-in-out;
}

.logo-brand .light-text {
    color: var(--text-light);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    transition: transform var(--transition-speed), opacity var(--transition-speed);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sharp);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-tertiary);
    transition: width var(--transition-speed) ease, left var(--transition-speed) ease;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

.nav-link:hover {
    color: var(--accent-secondary);
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-primary);
    color: var(--text-light);
    padding: 10rem 1.5rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, rgba(5,5,8,1) 100%);
    z-index: 1;
    animation: backgroundPulse 8s infinite ease-in-out;
}

.hero-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.badge-accent {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    color: var(--text-light);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    font-size: 1.05rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Buttons with glossy hover animations */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: var(--border-radius-med);
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #7f1d1d 100%);
    color: var(--text-light);
    border: 1px solid rgba(255, 42, 42, 0.4);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(25deg);
    transition: none;
}

.btn-primary:hover::after {
    left: 150%;
    transition: all 0.7s ease-in-out;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-primary) 100%);
    box-shadow: 0 6px 30px rgba(255, 42, 42, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Match Index - Glossy Red & Black Cards */
.matchup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.matchup-card {
    background: var(--surface-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--accent-primary);
    border-radius: var(--border-radius-med);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.matchup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--glossy-sheen);
    opacity: 0.1;
    pointer-events: none;
    transition: opacity var(--transition-speed) ease;
}

/* Card Gloss Transition */
.matchup-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(25deg);
    transition: none;
    pointer-events: none;
}

.matchup-card:hover::after {
    left: 150%;
    transition: all 0.8s ease-in-out;
}

.matchup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.25);
    border-color: rgba(255, 42, 42, 0.3);
    border-left-color: var(--accent-tertiary);
}

.matchup-card:hover::before {
    opacity: 0.2;
}

.card-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.card-versus {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.card-versus .vs {
    color: var(--accent-tertiary);
    font-size: 1.1rem;
    font-style: italic;
}

.card-stats-row {
    display: flex;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.stat-box {
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
}

.card-footer-cta {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-tertiary);
    transition: color var(--transition-speed) ease;
}

.matchup-card:hover .card-footer-cta {
    color: var(--text-light);
}

/* Favorites Section (Glossy Dark Glass) */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.favorite-stat-card {
    background: rgba(18, 18, 24, 0.7);
    border: 1px solid rgba(255, 42, 42, 0.15);
    border-radius: var(--border-radius-med);
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.favorite-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--glossy-sheen);
    opacity: 0.05;
    pointer-events: none;
}

.favorite-stat-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 35px rgba(255, 42, 42, 0.2);
    border-color: rgba(255, 42, 42, 0.35);
}

.fav-rank {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-tertiary);
    width: 50px;
    flex-shrink: 0;
}

.fav-details {
    flex-grow: 1;
}

.fav-country {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
}

.fav-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.fav-data-block {
    text-align: right;
    flex-shrink: 0;
}

.fav-metric {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.fav-metric .label {
    color: var(--text-muted);
}

.fav-metric .val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Expanded Previews List */
.previews-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.preview-item {
    background: var(--surface-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-med);
    overflow: hidden;
    scroll-margin-top: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: border-color var(--transition-speed) ease;
}

.preview-item:hover {
    border-color: rgba(255, 42, 42, 0.25);
}

.preview-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #1c0a0a 100%);
    color: var(--text-light);
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-primary);
}

.preview-header h3 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0.5px;
}

.preview-group {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--accent-primary);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    font-size: 0.95rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.preview-body {
    padding: 2.5rem;
}

.preview-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-med);
    padding: 1.75rem;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.team-stat-col {
    flex: 1;
}

.team-stat-col h4 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.25rem;
}

.team-stat-col p {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.team-stat-col p strong {
    color: var(--text-light);
}

.comparison-vs {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-tertiary);
    font-style: italic;
    width: 60px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.3);
}

.preview-paragraph {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Table Design for Groups */
.table-container {
    overflow-x: auto;
    border-radius: var(--border-radius-med);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.group-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    color: var(--text-dark);
    background: rgba(13, 13, 18, 0.6);
}

.group-table th, .group-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
}

.group-table th {
    background-color: rgba(22, 22, 28, 0.9);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--accent-secondary);
    border-bottom: 2px solid rgba(255, 42, 42, 0.3);
}

.group-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color var(--transition-speed);
}

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

/* Host Nations Watch Grid */
.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.host-card {
    background: var(--surface-light);
    border: 1px solid rgba(255, 42, 42, 0.1);
    border-radius: var(--border-radius-med);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
}

.host-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 42, 42, 0.3);
    box-shadow: 0 12px 30px rgba(255, 42, 42, 0.15);
}

.host-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-tertiary);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.host-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.host-details p {
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
    color: var(--text-dark);
}

.host-details p strong {
    color: var(--text-light);
}

/* Method Note Guide */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.method-card {
    background-color: rgba(13, 13, 18, 0.85);
    border-top: 4px solid var(--accent-primary);
    padding: 1.75rem;
    border-radius: var(--border-radius-sharp);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.method-card h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.method-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-med);
    background-color: var(--surface-light);
    overflow: hidden;
    transition: border-color var(--transition-speed) ease;
}

.faq-item:hover {
    border-color: rgba(255, 42, 42, 0.25);
}

.faq-trigger {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.01);
    color: var(--text-light);
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed) ease;
}

.faq-trigger:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-trigger::after {
    content: '+';
    font-size: 1.7rem;
    color: var(--accent-tertiary);
    font-family: var(--font-body);
}

.faq-item.active .faq-trigger::after {
    content: '-';
}

.faq-content {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-content p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Main Footer */
.main-footer {
    background-color: var(--bg-primary);
    color: var(--text-light);
    padding: 5rem 1.5rem 3rem;
    border-top: 4px solid var(--accent-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--accent-tertiary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links-column h4, .footer-address-column h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 0.4rem;
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
}

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

.address-wrapper {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Legal content-heavy page styling (Glossy Black & Red Card) */
.legal-content-box {
    background: rgba(18, 18, 24, 0.7);
    border: 1px solid rgba(255, 42, 42, 0.15);
    border-radius: var(--border-radius-med);
    padding: 3.5rem;
    margin-top: 2.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.legal-content-box h3 {
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 42, 42, 0.25);
    padding-bottom: 0.5rem;
}

.legal-content-box p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content-box ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-content-box li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .section-container {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2rem;
    }

    .main-header {
        top: 10px;
        margin: 0.5rem 1rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(13, 13, 18, 0.95);
        backdrop-filter: blur(12px);
        padding: 1.5rem;
        border-bottom: 1px solid var(--accent-primary);
        gap: 1.25rem;
        border-radius: 0 0 16px 16px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-section {
        padding: 8rem 1.5rem 6rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .preview-stats-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-vs {
        align-self: center;
        margin: 0.75rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .legal-content-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .badge-accent {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
    
    .matchup-card {
        padding: 1.5rem 1.25rem;
    }

    .card-versus {
        font-size: 1.5rem;
    }
}