/* ==========================================================================
   COLOR SCHEME & DESIGN DEFINITIONS (Sporty Red & White UI)
   ========================================================================== */
:root {
    --night-ink: #110204;
    --night-ink-tint: #1C0508;
    --stadium-grey: #8C7A7C;
    --stadium-grey-light: #E5E0E1;
    --electric-lime: #FF1E27; /* Energetic Red Accent */
    --chalk: #FFFFFF; /* Crisp White */
    --restrained-magenta: #D32F2F; /* Deep Crimson Red */
    
    /* Glares and translucent overlays */
    --hologram-glow: rgba(255, 30, 39, 0.25);
    --magenta-glow: rgba(211, 47, 47, 0.35);
    --glass-bg: rgba(28, 5, 8, 0.85);
    --glass-border: rgba(229, 224, 225, 0.25);
    
    /* Standard System Fonts */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

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

body {
    background-color: var(--night-ink);
    color: var(--chalk);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Offset for sticky nav */
}

a {
    color: var(--electric-lime);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a:hover {
    color: var(--chalk);
    text-shadow: 0 0 8px var(--hologram-glow);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Header & Holographic Sticky Navigation */
.holo-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--chalk);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-accent {
    color: var(--electric-lime);
    text-shadow: 0 0 10px var(--hologram-glow);
}

.nav-menu ul {
    display: flex;
    gap: 24px;
}

.nav-menu a {
    color: var(--chalk);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--electric-lime);
    background: rgba(255, 30, 39, 0.1);
    box-shadow: inset 0 0 8px rgba(255, 30, 39, 0.2);
}

/* Mobile Toggle Hamburger */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--chalk);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--chalk);
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hamburger animation state */
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Snapshot Static Ticker */
.snapshot-ticker {
    background: #000;
    color: var(--chalk);
    border-bottom: 2px solid var(--electric-lime);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 8px 0;
    text-align: center;
    position: relative;
    z-index: 900;
    text-shadow: 0 0 5px var(--electric-lime);
}

.ticker-label {
    color: var(--electric-lime);
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0 100px 0;
    background: linear-gradient(135deg, var(--night-ink) 0%, #2A090D 100%);
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.hero-backdrop {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 30, 39, 0.12) 0%, rgba(17, 2, 4, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tagline {
    font-family: var(--font-mono);
    color: var(--electric-lime);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
}

.holo-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    color: var(--chalk);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 36px auto;
    color: var(--stadium-grey-light);
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--electric-lime);
    color: var(--chalk);
    box-shadow: 0 4px 15px rgba(255, 30, 39, 0.3);
}

.btn-primary:hover {
    background-color: var(--chalk);
    color: var(--night-ink);
    box-shadow: 0 4px 20px rgba(244, 243, 237, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--night-ink-tint);
    color: var(--chalk);
    border: 1px solid var(--stadium-grey);
}

.btn-secondary:hover {
    background-color: var(--stadium-grey);
    color: var(--chalk);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--electric-lime);
    border: 1px solid var(--electric-lime);
    box-shadow: inset 0 0 5px rgba(255, 30, 39, 0.1);
}

.btn-outline:hover {
    background: rgba(255, 30, 39, 0.1);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Data Sections */
.data-section {
    padding: 80px 0;
}

.alt-bg {
    background-color: var(--night-ink-tint);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-header {
    margin-bottom: 48px;
    text-align: center;
}

.badge-holo {
    display: inline-block;
    background: rgba(255, 30, 39, 0.15);
    border: 1px solid var(--electric-lime);
    color: var(--electric-lime);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--stadium-grey-light);
    max-width: 600px;
    margin: 12px auto 0 auto;
}

/* Grids */
.grid-col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Holographic Card UI (Penalty Style) */
.holo-card {
    background: rgba(28, 5, 8, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.holo-card:hover {
    transform: translateY(-4px);
    border-color: var(--electric-lime);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 30, 39, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.penalty-accent {
    border-left: 4px solid var(--restrained-magenta);
}

.penalty-accent:hover {
    border-color: var(--restrained-magenta);
    box-shadow: 0 0 25px rgba(211, 47, 47, 0.2);
}

/* Penalty Stamp signature component */
.penalty-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--restrained-magenta);
    color: var(--chalk);
    font-family: var(--font-mono);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 8px 14px;
    border-radius: 4px;
    transform: rotate(5deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--chalk);
}

.card-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--stadium-grey-light);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.card-fixture {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--chalk);
}

.card-fixture .score {
    color: var(--electric-lime);
    font-family: var(--font-mono);
}

.penalty-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.subtext {
    font-size: 0.85rem;
    color: var(--stadium-grey-light);
    display: block;
    margin-bottom: 4px;
}

.highlight-magenta {
    color: var(--electric-lime);
    font-weight: 700;
}

.card-actions {
    margin-top: auto;
}

.card-link {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.outcome-bar {
    background: rgba(255, 30, 39, 0.05);
    border: 1px solid rgba(255, 30, 39, 0.15);
    padding: 12px 16px;
    border-radius: 4px;
    color: var(--chalk);
    font-weight: 600;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.neon-lime-dot {
    background-color: var(--electric-lime);
    box-shadow: 0 0 8px var(--electric-lime);
}

/* Center CTA space */
.center-cta {
    text-align: center;
    margin-top: 48px;
}

/* Custom Holographic Progress Table */
.table-wrapper {
    background: rgba(28, 5, 8, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 30px;
}

.holo-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.holo-table th,
.holo-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(140, 122, 124, 0.15);
}

.holo-table th {
    background-color: rgba(28, 5, 8, 0.8);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--stadium-grey-light);
    letter-spacing: 0.05em;
}

.table-bold {
    font-weight: 700;
    color: var(--chalk);
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-confirmed {
    background: rgba(255, 30, 39, 0.1);
    border: 1px solid var(--electric-lime);
    color: var(--electric-lime);
}

.status-pending {
    background: rgba(244, 243, 237, 0.05);
    border: 1px solid var(--stadium-grey-light);
    color: var(--stadium-grey-light);
}

.route-footer-note {
    font-size: 0.9rem;
    color: var(--stadium-grey-light);
    text-align: center;
}

.lime-link {
    color: var(--electric-lime);
    font-weight: 600;
}

/* Info Banner Section */
.info-banner-section {
    padding-bottom: 80px;
}

.info-card-wrapper {
    background: rgba(28, 5, 8, 0.8);
    border: 1px solid var(--stadium-grey);
    padding: 36px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card-wrapper h3 {
    margin-bottom: 14px;
    font-size: 1.3rem;
    color: var(--electric-lime);
}

.border-magenta {
    border-left: 4px solid var(--restrained-magenta);
}

.border-magenta h3 {
    color: var(--restrained-magenta);
}

/* Footer layout */
.main-footer {
    background-color: #080102;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px 0;
    color: var(--stadium-grey-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-accent {
    font-size: 1.8rem;
    font-weight: 800;
}

.brand-sub {
    font-size: 0.85rem;
    margin-top: 12px;
    line-height: 1.4;
}

.footer-links h4,
.footer-legal h4,
.footer-address-block h4 {
    color: var(--chalk);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-legal a {
    color: var(--stadium-grey-light);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--electric-lime);
}

.footer-address {
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--stadium-grey-light);
}

.mt-2 {
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(140, 122, 124, 0.1);
    padding-top: 40px;
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.footer-cookie-trigger {
    background: transparent;
    border: 1px solid var(--stadium-grey-light);
    color: var(--stadium-grey-light);
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.25s ease;
}

.footer-cookie-trigger:hover {
    border-color: var(--electric-lime);
    color: var(--electric-lime);
}

/* Penalty Spotlight Page Details */
.minimal-hero {
    padding: 60px 0 40px 0;
    text-align: center;
}

.shootout-archive-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.shootout-block {
    background: rgba(28, 5, 8, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 40px;
}

.shootout-header {
    border-bottom: 1px solid rgba(140, 122, 124, 0.15);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.date-stamp {
    font-family: var(--font-mono);
    color: var(--electric-lime);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-scoreline {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--chalk);
    margin-top: 6px;
}

.shootout-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}

.penalty-stamp-large {
    background: var(--restrained-magenta);
    border: 2px dashed var(--chalk);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transform: rotate(-3deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.penalty-count-tag {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: var(--chalk);
    opacity: 0.9;
}

.penalty-scores {
    font-size: 3rem;
    font-weight: 900;
    color: var(--chalk);
    display: block;
    line-height: 1.1;
    margin-top: 6px;
}

.shootout-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.archive-bullets {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.archive-bullets li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    color: var(--stadium-grey-light);
}

.archive-bullets li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--electric-lime);
}

/* Completed Score Grid Page */
.score-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.flat-score-card {
    background: rgba(28, 5, 8, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 30px;
}

.penalty-border {
    border-left: 4px solid var(--restrained-magenta);
}

.f-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--stadium-grey-light);
}

.f-round {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.f-teams {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.f-team {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--stadium-grey-light);
    display: flex;
    justify-content: space-between;
}

.f-team.winner {
    color: var(--chalk);
    font-weight: 800;
}

.f-team .num {
    font-family: var(--font-mono);
}

.penalty-line {
    border-top: 1px solid rgba(140, 122, 124, 0.15);
    padding-top: 12px;
    margin-bottom: 16px;
    color: var(--restrained-magenta);
    font-family: var(--font-mono);
    font-weight: 700;
}

.f-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(140, 122, 124, 0.1);
    padding-top: 16px;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 10px;
}

.p-status {
    color: var(--electric-lime);
}

.p-status-pen {
    color: var(--restrained-magenta);
}

.p-outcome {
    color: var(--chalk);
    font-weight: 600;
}

/* Next Routes Flex UI */
.routes-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.route-block-card {
    background: rgba(28, 5, 8, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 36px;
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(140, 122, 124, 0.15);
    padding-bottom: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.r-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.r-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--stadium-grey-light);
}

.r-match {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--chalk);
    margin-bottom: 12px;
}

.r-desc {
    color: var(--stadium-grey-light);
    margin-bottom: 24px;
}

.advancement-milestone {
    background: rgba(0,0,0,0.2);
    padding: 14px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.arrow-indicator {
    color: var(--electric-lime);
    font-weight: bold;
}

/* Legal Pages Styling */
.legal-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(28, 5, 8, 0.3);
    padding: 48px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.legal-text-wrapper h2 {
    color: var(--electric-lime);
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-text-wrapper h3 {
    color: var(--chalk);
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-text-wrapper p {
    color: var(--stadium-grey-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-text-wrapper ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-text-wrapper li {
    color: var(--stadium-grey-light);
    margin-bottom: 10px;
    list-style-type: square;
}

.legal-divider {
    border: 0;
    height: 1px;
    background: var(--glass-border);
    margin: 40px 0;
}

/* Contact page Form Styling */
.contact-card-wrapper {
    background: rgba(28, 5, 8, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 48px;
}

.holo-form .form-group {
    margin-bottom: 24px;
}

.holo-form label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--electric-lime);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: var(--night-ink);
    border: 1px solid var(--stadium-grey);
    color: var(--chalk);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.25s ease;
}

.form-control:focus {
    border-color: var(--electric-lime);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 30, 39, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFFFFF' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-check-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--stadium-grey-light);
}

.form-check-group input {
    margin-top: 4px;
    cursor: pointer;
}

.form-feedback-alert {
    margin-top: 24px;
    padding: 16px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-feedback-alert.success {
    background: rgba(255, 30, 39, 0.1);
    border: 1px solid var(--electric-lime);
    color: var(--electric-lime);
}

/* Cookie Preferences Banner Hub */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 420px;
    max-width: calc(100% - 48px);
    background: rgba(17, 2, 4, 0.95);
    border: 1px solid var(--electric-lime);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 30, 39, 0.2);
    border-radius: 8px;
    padding: 30px;
    z-index: 2000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--electric-lime);
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--stadium-grey-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cookie-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.8rem;
    color: var(--chalk);
    cursor: pointer;
}

.cookie-option input {
    margin-top: 3px;
}

.cookie-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cookie-buttons .btn-outline {
    grid-column: span 2;
}

/* Accessible focus outline */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--electric-lime);
    outline-offset: 3px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet & Smaller Screens */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
}

@media screen and (max-width: 992px) {
    .shootout-body {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .penalty-stamp-large {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .holo-header {
        height: 70px;
    }

    /* Mobile Navigation Drawer style */
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--night-ink);
        padding: 40px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-right: 1px solid var(--glass-border);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu a {
        display: block;
        font-size: 1.2rem;
        padding: 10px 0;
    }

    /* Hero Responsive scale */
    .holo-title {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    /* Grid Collapse */
    .grid-col-2,
    .score-grid {
        grid-template-columns: 1fr;
    }

    .legal-text-wrapper,
    .contact-card-wrapper {
        padding: 30px;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .holo-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .f-team {
        font-size: 1.2rem;
    }

    .route-header {
        flex-direction: column;
        align-items: flex-start;
    }
}