/* RESET & CSS VARIABLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --night-ink: #0C1422;
    --stadium-grey: #4E5D68;
    --electric-lime: #B8D85A;
    --chalk: #F4F3ED;
    --restrained-magenta: #B45473;
    --font-mono: 'Courier New', Courier, monospace;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-fast: 0.2s ease;
    --border-glowing: 1px solid var(--electric-lime);
}

body {
    background-color: var(--night-ink);
    color: var(--chalk);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER & NAVIGATION */
.site-header {
    background-color: rgba(12, 20, 34, 0.95);
    border-bottom: 2px solid var(--stadium-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand-logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--chalk);
    text-decoration: none;
    letter-spacing: -1px;
}

.brand-accent {
    color: var(--electric-lime);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--chalk);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--chalk);
    transition: var(--transition-fast);
}

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

/* Active nav-toggle styling */
.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: 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;
}

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

.nav-link {
    color: var(--chalk);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    padding: 0.5rem 0.2rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--electric-lime);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--electric-lime);
}

.nav-link:focus-visible {
    outline: 2px dashed var(--electric-lime);
    outline-offset: 4px;
}

/* HERO SECTION */
.hero-section {
    background: radial-gradient(circle at 50% 50%, rgba(78, 93, 104, 0.2) 0%, rgba(12, 20, 34, 1) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    border-bottom: 1px solid rgba(184, 216, 90, 0.15);
}

.hero-container {
    max-width: 850px;
    text-align: center;
}

.matrix-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(184, 216, 90, 0) 50%, rgba(184, 216, 90, 0.05) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(184, 216, 90, 0.15);
    border: 1px solid var(--electric-lime);
    color: var(--electric-lime);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.hero-badge.color-magenta {
    background-color: rgba(180, 84, 115, 0.15);
    border-color: var(--restrained-magenta);
    color: var(--restrained-magenta);
}

.hero-badge.color-lime {
    background-color: rgba(184, 216, 90, 0.15);
    border-color: var(--electric-lime);
    color: var(--electric-lime);
}

.glitch-text {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(180, 84, 115, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--chalk);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: bold;
    padding: 0.8rem 1.8rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--electric-lime);
    color: var(--night-ink);
}

.btn-primary:hover {
    background-color: var(--chalk);
    box-shadow: 0 0 15px rgba(184, 216, 90, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--chalk);
    border-color: var(--stadium-grey);
}

.btn-secondary:hover {
    border-color: var(--electric-lime);
    color: var(--electric-lime);
}

.btn-link {
    background: none;
    border: none;
    color: var(--chalk);
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--electric-lime);
}

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

.w-full {
    width: 100%;
}

/* SECTION ELEMENTS */
.section-header {
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--electric-lime);
    padding-left: 1rem;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.terminal-prompt {
    color: var(--electric-lime);
    margin-right: 0.5rem;
}

.section-desc {
    color: var(--stadium-grey);
    font-size: 1rem;
}

/* MATCH CARD GRID */
.match-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.match-card {
    background-color: rgba(78, 93, 104, 0.1);
    border: 1px solid rgba(78, 93, 104, 0.3);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.match-card:hover {
    transform: translateY(-2px);
    border-color: var(--stadium-grey);
}

.match-card.penalty-stamped {
    border-color: rgba(180, 84, 115, 0.4);
}

.match-card.penalty-stamped:hover {
    border-color: var(--restrained-magenta);
}

.card-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--stadium-grey);
    margin-bottom: 1rem;
}

.match-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: bold;
}

.team-row.text-highlight {
    color: var(--electric-lime);
}

.score {
    font-size: 1.8rem;
}

.card-footer {
    border-top: 1px dashed rgba(78, 93, 104, 0.3);
    padding-top: 0.8rem;
}

.outcome-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--chalk);
    opacity: 0.8;
}

/* SIGNATURE COMPONENT: PENALTY STAMP */
.penalty-stamp {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%) rotate(-12deg);
    border: 3px double var(--restrained-magenta);
    color: var(--restrained-magenta);
    padding: 0.3rem 0.8rem;
    font-family: var(--font-mono);
    font-weight: bold;
    text-align: center;
    background-color: rgba(12, 20, 34, 0.9);
    border-radius: 4px;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(180, 84, 115, 0.2);
}

.stamp-title {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.stamp-score {
    display: block;
    font-size: 1.3rem;
}

/* MATRIX TABLE */
.route-table-section {
    margin-bottom: 4rem;
}

.table-container {
    overflow-x: auto;
    border: 1px solid rgba(78, 93, 104, 0.3);
    border-radius: 4px;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-mono);
    text-align: left;
}

.matrix-table th {
    background-color: rgba(78, 93, 104, 0.2);
    color: var(--electric-lime);
    padding: 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(78, 93, 104, 0.4);
}

.matrix-table td {
    padding: 1rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(78, 93, 104, 0.2);
    background-color: rgba(12, 20, 34, 0.4);
}

.matrix-table tr:hover td {
    background-color: rgba(78, 93, 104, 0.1);
}

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

/* UPCOMING HIGHLIGHT */
.matrix-card-alt {
    background: linear-gradient(135deg, rgba(12, 20, 34, 0.9) 0%, rgba(78, 93, 104, 0.15) 100%);
    border: 1px solid var(--stadium-grey);
    border-left: 4px solid var(--restrained-magenta);
    border-radius: 4px;
    padding: 2.5rem;
    margin-bottom: 4rem;
}

.magenta-glow-text {
    font-family: var(--font-mono);
    color: var(--restrained-magenta);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.upcoming-desc {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--chalk);
}

.route-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.route-card-mini {
    background-color: rgba(12, 20, 34, 0.8);
    border: 1px solid rgba(78, 93, 104, 0.4);
    padding: 1.2rem;
    border-radius: 4px;
}

.route-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--stadium-grey);
    margin-bottom: 0.5rem;
}

.route-teams {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--chalk);
}

.route-info {
    font-size: 0.85rem;
    color: var(--stadium-grey);
}

.action-wrap {
    text-align: right;
}

.text-link {
    font-family: var(--font-mono);
    color: var(--electric-lime);
    text-decoration: none;
    font-size: 0.95rem;
}

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

/* WARNING / METHODOLOGY */
.snapshot-warning {
    margin-bottom: 4rem;
}

.warning-box {
    background-color: rgba(78, 93, 104, 0.05);
    border: 1px solid rgba(78, 93, 104, 0.2);
    border-radius: 4px;
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--stadium-grey);
}

.warning-box strong {
    color: var(--chalk);
}

/* FOCUS PENALTY CARD */
.penalty-focus-card {
    background-color: rgba(78, 93, 104, 0.1);
    border: 1px solid rgba(180, 84, 115, 0.3);
    border-top: 4px solid var(--restrained-magenta);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
}

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

.match-meta-info {
    font-family: var(--font-mono);
    color: var(--stadium-grey);
    font-size: 0.9rem;
}

.stamp-pill {
    background-color: rgba(180, 84, 115, 0.2);
    color: var(--restrained-magenta);
    border: 1px solid var(--restrained-magenta);
    padding: 0.3rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
}

.focus-card-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.team-block {
    flex: 1;
    text-align: center;
}

.team-title {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.team-title.text-magenta {
    color: var(--restrained-magenta);
}

.focus-score {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: bold;
}

.score-subtext {
    font-size: 0.9rem;
    color: var(--stadium-grey);
    display: block;
}

.vs-divider {
    font-family: var(--font-mono);
    color: var(--stadium-grey);
    font-size: 1.2rem;
    padding: 0 2rem;
}

.focus-card-breakdown {
    border-top: 1px solid rgba(78, 93, 104, 0.2);
    padding-top: 1.5rem;
}

.focus-card-breakdown h4 {
    font-family: var(--font-mono);
    color: var(--electric-lime);
    margin-bottom: 1rem;
}

.matrix-data-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(78, 93, 104, 0.25);
}

.data-label {
    color: var(--stadium-grey);
}

.data-value {
    color: var(--chalk);
    font-weight: bold;
}

/* DIRECTORY SCORELINE LIST */
.full-archive-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.archive-match-item {
    background-color: rgba(78, 93, 104, 0.08);
    border: 1px solid rgba(78, 93, 104, 0.2);
    padding: 1.8rem;
    border-radius: 4px;
}

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

.match-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--stadium-grey);
    margin-bottom: 0.8rem;
}

.match-teams-title {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.score-pill {
    background-color: rgba(78, 93, 104, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 1.2rem;
}

.score-pill.winning-score {
    background-color: rgba(184, 216, 90, 0.2);
    color: var(--electric-lime);
}

.shootout-pill-large {
    display: inline-block;
    background-color: rgba(180, 84, 115, 0.1);
    color: var(--restrained-magenta);
    border: 1px solid var(--restrained-magenta);
    padding: 0.3rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin: 0.5rem 0;
    border-radius: 4px;
}

.advance-status {
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.text-lime { color: var(--electric-lime); }
.text-magenta { color: var(--restrained-magenta); }
.text-grey { color: var(--stadium-grey); }

/* ROUTES NEXT ROUND PATHWAY */
.routes-vertical-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.route-flow-card {
    background-color: rgba(78, 93, 104, 0.1);
    border: 1px solid rgba(78, 93, 104, 0.3);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
}

.flow-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.flow-badge.verified {
    background-color: rgba(184, 216, 90, 0.15);
    border: 1px solid var(--electric-lime);
    color: var(--electric-lime);
}

.flow-badge.pending {
    background-color: rgba(180, 84, 115, 0.15);
    border: 1px solid var(--restrained-magenta);
    color: var(--restrained-magenta);
}

.flow-main-header {
    margin-bottom: 1.5rem;
    max-width: 65%;
}

.flow-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--stadium-grey);
    display: block;
    margin-bottom: 0.3rem;
}

.flow-title {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    color: var(--chalk);
}

.flow-connections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px dashed rgba(78, 93, 104, 0.3);
    border-bottom: 1px dashed rgba(78, 93, 104, 0.3);
    margin-bottom: 1.5rem;
}

.connection-node {
    display: flex;
    flex-direction: column;
}

.node-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--stadium-grey);
    text-transform: uppercase;
}

.node-value {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: bold;
    margin-top: 0.2rem;
}

.flow-destination {
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.dest-label {
    color: var(--stadium-grey);
}

.dest-desc {
    margin-top: 0.2rem;
}

/* ABOUT & INFORMATION */
.info-details-section {
    padding: 3rem 0;
}

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

.info-text-card {
    background-color: rgba(78, 93, 104, 0.08);
    border: 1px solid rgba(78, 93, 104, 0.2);
    padding: 2.5rem;
    border-radius: 4px;
}

.info-text-card.full-width {
    grid-column: span 2;
    border-left: 4px solid var(--electric-lime);
}

.info-text-card h3 {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--electric-lime);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-text-card p {
    font-size: 1rem;
    color: var(--chalk);
    opacity: 0.9;
}

.info-text-card p + p {
    margin-top: 1rem;
}

/* CONTACT PAGE Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.form-wrapper {
    background-color: rgba(78, 93, 104, 0.08);
    border: 1px solid rgba(78, 93, 104, 0.2);
    padding: 2.5rem;
    border-radius: 4px;
}

.matrix-form .form-group {
    margin-bottom: 1.5rem;
}

.matrix-form label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--electric-lime);
    margin-bottom: 0.5rem;
}

.matrix-form input[type="text"],
.matrix-form input[type="email"],
.matrix-form select,
.matrix-form textarea {
    width: 100%;
    background-color: var(--night-ink);
    border: 1px solid rgba(78, 93, 104, 0.5);
    color: var(--chalk);
    font-family: var(--font-mono);
    padding: 0.8rem;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.matrix-form input:focus,
.matrix-form select:focus,
.matrix-form textarea:focus {
    outline: none;
    border-color: var(--electric-lime);
    box-shadow: 0 0 10px rgba(184, 216, 90, 0.15);
}

.form-checkbox-group {
    margin-bottom: 1.5rem;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--chalk);
    opacity: 0.85;
    position: relative;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: var(--night-ink);
    border: 1px solid rgba(78, 93, 104, 0.5);
    border-radius: 3px;
    margin-right: 0.8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--electric-lime);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--electric-lime);
    border-color: var(--electric-lime);
}

.checkmark:after {
    content: "";
    display: none;
    width: 5px;
    height: 10px;
    border: solid var(--night-ink);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    line-height: 1.3;
}

.form-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    border-radius: 4px;
    text-align: center;
}

.form-feedback.success {
    background-color: rgba(184, 216, 90, 0.15);
    border: 1px solid var(--electric-lime);
    color: var(--electric-lime);
}

.form-feedback.error {
    background-color: rgba(180, 84, 115, 0.15);
    border: 1px solid var(--restrained-magenta);
    color: var(--restrained-magenta);
}

.form-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background-color: rgba(78, 93, 104, 0.08);
    border: 1px solid rgba(78, 93, 104, 0.2);
    padding: 2rem;
    border-radius: 4px;
}

.sidebar-box.highlight-box {
    border-left: 4px solid var(--electric-lime);
}

.sidebar-box h3 {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--electric-lime);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.sidebar-box p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* LEGAL TEXT TEMPLATE */
.legal-text-section {
    padding: 3rem 0;
}

.legal-content {
    background-color: rgba(78, 93, 104, 0.05);
    border: 1px solid rgba(78, 93, 104, 0.15);
    padding: 3rem;
    border-radius: 4px;
}

.last-updated {
    font-family: var(--font-mono);
    color: var(--stadium-grey);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.legal-content h3 {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--electric-lime);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.legal-content h3:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.inline-link {
    color: var(--electric-lime);
    text-decoration: none;
}

.inline-link:hover {
    text-decoration: underline;
}

.address-card {
    background-color: var(--night-ink);
    border: 1px dashed rgba(78, 93, 104, 0.5);
    padding: 1.5rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

/* FOOTER */
.site-footer {
    background-color: #060a12;
    border-top: 2px solid var(--stadium-grey);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.footer-brand-info .brand-logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--stadium-grey);
    line-height: 1.5;
}

.footer-addresses h4,
.footer-links-grid h4 {
    font-family: var(--font-mono);
    color: var(--electric-lime);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-addresses p {
    font-size: 0.85rem;
    color: var(--chalk);
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--chalk);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(78, 93, 104, 0.2);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--stadium-grey);
    line-height: 1.5;
}

.cookie-trigger-container {
    text-align: right;
}

.cookie-trigger-btn {
    background: none;
    border: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--electric-lime);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.cookie-trigger-btn:hover {
    color: var(--chalk);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 420px;
    max-width: calc(100vw - 4rem);
    background-color: rgba(12, 20, 34, 0.98);
    border: 1px solid var(--electric-lime);
    border-radius: 4px;
    padding: 2rem;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.cookie-banner.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.cookie-banner-content h3 {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--electric-lime);
    margin-bottom: 0.8rem;
}

.cookie-banner-content p {
    font-size: 0.85rem;
    color: var(--chalk);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cookie-pref-options {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(78, 93, 104, 0.15);
    border-radius: 4px;
}

.pref-checkbox-row {
    margin-bottom: 0.8rem;
}

.pref-checkbox-row:last-child {
    margin-bottom: 0;
}

.pref-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cookie-banner-actions .btn {
    flex: 1;
    min-width: 110px;
}

.hidden {
    display: none !important;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0 3rem;
    }
    
    .glitch-text {
        font-size: 2.3rem;
    }
    
    .match-grid {
        grid-template-columns: 1fr;
    }
    
    .route-cards-container {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-text-card.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--night-ink);
        border-bottom: 1px solid var(--stadium-grey);
        display: none;
        padding: 1.5rem;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .focus-card-teams {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .vs-divider {
        padding: 0.5rem 0;
    }
    
    .flow-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .flow-main-header {
        max-width: 100%;
    }
    
    .flow-connections {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand-info {
        grid-column: span 1;
    }
    
    .cookie-banner {
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .glitch-text {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .match-body {
        gap: 0.5rem;
    }
    
    .team-row {
        font-size: 1.1rem;
    }
    
    .score {
        font-size: 1.4rem;
    }
    
    .penalty-stamp {
        right: 5%;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
}