/* RESET AND BASICS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FAF8F2; /* Off-white sheet paper */
    color: #112015; /* Deep forest black instead of generic black */
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* CARTOON SPORT STYLING (THE FOLDED TOURNEY NOTEBOOK) */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #112015;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0px #E6ECD2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.text-accent {
    color: #1E5C3F; /* Deep forest green */
    position: relative;
    display: inline-block;
}

/* Cartoon Styled Containers */
.cartoon-box {
    background-color: #FAF8F2;
    border: 3px solid #112015;
    border-radius: 12px;
    box-shadow: 6px 6px 0px #112015;
    padding: 24px;
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cartoon-box:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #112015;
}

/* Color thematic boxes */
.info-box {
    border-color: #1E5C3F; /* Forest Green */
    box-shadow: 5px 5px 0px #1E5C3F;
}
.info-box:hover {
    box-shadow: 7px 7px 0px #1E5C3F;
}

.highlight-box {
    border-color: #FFCB05; /* Athletic Yellow */
    box-shadow: 5px 5px 0px #FFCB05;
    background-color: #FFFDEB; /* Soft light yellow tint */
}
.highlight-box:hover {
    box-shadow: 7px 7px 0px #FFCB05;
}

.secondary-box {
    border-color: #E6ECD2; /* Soft pale green */
    box-shadow: 5px 5px 0px #E6ECD2;
}
.secondary-box:hover {
    box-shadow: 7px 7px 0px #E6ECD2;
}

/* HEADER NAVIGATION - IMPROVED, SLIM AND PROPER */
.main-header {
    background-color: #1E5C3F; /* Elegant deep forest green */
    border-bottom: 4px solid #FFCB05; /* High contrast proper yellow accent */
    padding: 10px 0; /* Slim proper padding */
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #FAF8F2; /* Creamy white logo on green bg */
}

.logo-icon {
    font-size: 1.6rem; /* Slimmer layout size */
    animation: bounce-rotate 6s infinite ease-in-out;
}

.logo-text {
    font-weight: 900;
    font-size: 1.3rem; /* Highly proper proportioned size */
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #FAF8F2;
}

.logo-text .highlight {
    color: #FFCB05; /* Bright athletic yellow highlight */
}

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

.mobile-menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #FAF8F2; /* Creamy bars for visibility on green bg */
    border-radius: 10px;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 12px; /* Slimmer spacing */
}

.main-nav a {
    text-decoration: none;
    color: #FAF8F2;
    font-weight: 700;
    font-size: 0.9rem; /* Slim font weight & size */
    padding: 6px 12px; /* Proper tight padding */
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: #FFCB05; /* Bold athletic yellow */
    color: #112015; /* High contrast text */
    border-color: #112015;
}

/* HERO SECTION - REKEYED TO YELLOW */
.hero-section {
    padding: 50px 0;
    background-color: #FFCB05; /* Bright yellow folder cover design */
    color: #112015;
    border-bottom: 4px solid #112015;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -10%;
    width: 120%;
    height: 40px;
    background-color: #FAF8F2;
    transform: rotate(1.5deg);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: #1E5C3F; /* Forest Green */
    color: #FAF8F2;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    border: 2px solid #112015;
}

.hero-lead {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 800px;
    color: #112015;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #112015;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1E5C3F; /* Forest Green status link */
}

.status-indicator::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #1E5C3F;
    border-radius: 50%;
}

/* EXPLAINER ALERT BLOCK */
.explainer-alert {
    padding: 40px 0 20px;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.box-icon {
    font-size: 1.5rem;
}

.flex-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 8px;
    border: 3px solid #112015;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #1E5C3F; /* Deep Forest Green */
    color: #FAF8F2;
    box-shadow: 3px 3px 0px #112015;
}

.btn-secondary {
    background-color: #FFCB05; /* Athletic Yellow */
    color: #112015;
    box-shadow: 3px 3px 0px #112015;
}

.btn-outline {
    background-color: transparent;
    color: #112015;
    box-shadow: 3px 3px 0px #112015;
}

.btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px #112015;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* ROUTE MAP SECTION (HOMEPAGE COMPONENT) */
.route-map-section {
    padding: 40px 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #112015;
    font-weight: 600;
    margin-bottom: 30px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.legend-box {
    padding: 15px;
    margin-bottom: 30px;
}

.legend-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.legend-item {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid #112015;
}

.badge-known {
    background-color: #1E5C3F; /* Forest Green */
    color: #FAF8F2;
}

.badge-pending {
    background-color: #D32F2F; /* Energetic Red */
    color: #FAF8F2;
}

.badge-accent {
    background-color: #FFCB05; /* Athletic Yellow */
    color: #112015;
}

/* Blueprint Map Notebook container */
.cartoon-map-container {
    background-color: #FAF8F2;
    border: 4px dashed #112015;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(17, 32, 21, 0.08);
}

.map-fold-decor {
    font-weight: 900;
    text-transform: uppercase;
    color: #E6ECD2;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    border-bottom: 2px solid #E6ECD2;
    padding-bottom: 8px;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Individual Route Cards */
.route-card {
    background: #FAF8F2;
    border: 3px solid #112015;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 4px 4px 0px #112015;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.route-date {
    font-weight: 800;
    font-size: 0.85rem;
    color: #1E5C3F; /* Forest Green */
}

.route-type-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
}

.type-known {
    background-color: #1E5C3F; /* Forest Green */
    color: #FAF8F2;
}

.type-pending {
    background-color: #D32F2F; /* Energetic Red */
    color: #FAF8F2;
}

.matchup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.team-slot {
    flex: 1;
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 6px;
    border: 2px solid #112015;
}

.pending-slot {
    background-color: #FAF8F2;
    color: #D32F2F;
    border-style: dashed;
}

.known-slot {
    background-color: #FFCB05; /* Athletic Yellow background */
    color: #112015;
}

.vs-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #112015;
    color: #FAF8F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    flex-shrink: 0;
}

.route-desc-note {
    font-size: 0.8rem;
    font-weight: 600;
    color: #112015;
    opacity: 0.9;
}

/* CANADA HIGHLIGHT BLOCK */
.canada-route-highlight {
    padding: 40px 0;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

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

.lead-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 10px 0;
}

.notebook-visual-container {
    perspective: 1000px;
}

.notebook-page {
    background-color: #FAF8F2;
    border: 3px solid #112015;
    border-radius: 8px;
    box-shadow: 10px 10px 0px #FFCB05; /* Yellow Shadow */
    padding: 24px;
    width: 100%;
    max-width: 320px;
    position: relative;
}

.notebook-page::before {
    content: "•••••••••";
    letter-spacing: 12px;
    position: absolute;
    top: -12px;
    left: 20px;
    color: #112015;
    font-weight: 900;
    font-size: 1.5rem;
}

.notebook-page h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.notebook-list {
    list-style: none;
}

.notebook-list li {
    padding: 6px 0;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 2px dashed #E6ECD2;
}

.notebook-list li.checked {
    color: #1E5C3F; /* Forest Green checked color */
}

/* READ GUIDE SECTION */
.read-guide-section {
    padding: 40px 0;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.guide-card {
    background-color: #FAF8F2;
    border: 3px solid #112015;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    box-shadow: 4px 4px 0px #112015;
}

.guide-num {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 35px;
    height: 35px;
    border: 3px solid #112015;
    border-radius: 50%;
    background-color: #1E5C3F; /* Forest Green guide bubble */
    color: #FAF8F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.guide-card h4 {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.guide-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #112015;
}

/* GENERIC INFO CONTAINER */
.generic-info-section {
    padding: 20px 0 60px;
}

.max-width-text {
    max-width: 750px;
    margin: 0 auto;
}

/* ROUTES PAGE SPECIFIC: STRIP LEDGER DESIGN */
.page-title-section {
    padding: 40px 0 25px; /* Proper slimmer layout */
    background-color: #1E5C3F; /* Deep Forest Green */
    color: #FAF8F2;
    border-bottom: 4px solid #112015;
    position: relative;
}

.page-title-section h1 {
    color: #FAF8F2;
    text-shadow: none;
}

.lead-subtext {
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
}

.snapshot-tag {
    display: inline-block;
    background-color: #FFCB05; /* Proper Yellow highlight */
    color: #112015;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid #112015;
}

.routes-filter-legend-bar {
    padding: 20px 0;
}

.legend-narrow {
    margin-bottom: 0;
    padding: 12px 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.badge-row {
    display: flex;
    gap: 10px;
}

.all-routes-strips {
    padding: 20px 0 60px;
}

.route-strips-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* The notebook ledger stripe style */
.route-strip {
    background-color: #FAF8F2;
    border: 3px solid #112015;
    border-radius: 12px;
    box-shadow: 4px 4px 0px #112015;
    overflow: hidden;
}

.strip-header {
    background-color: #FFCB05; /* Athletic Yellow Ledger strip */
    border-bottom: 3px solid #112015;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 0.9rem;
    color: #112015;
}

.strip-index {
    background-color: #112015;
    color: #FAF8F2;
    padding: 2px 8px;
    border-radius: 4px;
}

.strip-body {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.match-pathway {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    max-width: 65%;
}

.path-node {
    flex: 1;
    padding: 12px;
    border: 3px solid #112015;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.05rem;
    text-align: center;
    box-shadow: 3px 3px 0px #112015;
}

.node-known {
    background-color: #FFCB05; /* Athletic Yellow */
    color: #112015;
}

.node-pending {
    background-color: #FAF8F2;
    border-style: dashed;
    color: #D32F2F; /* Energetic Red */
}

.highlight-txt {
    color: #1E5C3F; /* Forest Green text */
}

.path-connector {
    font-weight: 900;
    font-size: 0.9rem;
    color: #FAF8F2;
    background-color: #112015;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strip-status {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.status-detail {
    font-size: 0.85rem;
    font-weight: 600;
    color: #112015;
}

/* GROUP STATUS PAGE: MAP GRID AND TABLES */
.map-grid-section {
    padding: 30px 0 10px;
}

.completion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.group-badge {
    border: 2px solid #112015;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.group-badge strong {
    font-size: 1.2rem;
}

.group-badge span {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pending-bg {
    background-color: #FAF8F2;
    color: #D32F2F; /* Energetic Red */
    border-style: dashed;
}

.completed-bg {
    background-color: #1E5C3F; /* Deep Forest Green background */
    color: #FAF8F2;
}

.standings-detail-section {
    padding: 20px 0 60px;
}

.standings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.standings-card {
    padding: 0;
    overflow: hidden;
}

.sc-header {
    padding: 12px 20px;
    border-bottom: 3px solid #112015;
}

.pending-border { background-color: #FAF8F2; border-bottom-color: #112015; }
.completed-border { background-color: #1E5C3F; color: #FAF8F2; }
.completed-border h3 { color: #FAF8F2; }

.status-pill {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #112015;
}

.status-pending { background-color: #FAF8F2; color: #D32F2F; border-style: dashed; }
.status-completed { background-color: #FFCB05; color: #112015; }

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: left;
}

.standings-table th {
    background-color: #FFCB05; /* proper yellow table headers */
    padding: 8px 12px;
    border-bottom: 3px solid #112015;
    font-weight: 800;
    color: #112015;
}

.standings-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #E6ECD2;
}

.standings-table tr.adv-line {
    background-color: rgba(30, 92, 63, 0.08); /* light green tint highlight */
}

.standings-table tr:last-child td {
    border-bottom: none;
}

/* ABOUT PAGE SPECIFIC */
.bg-tan {
    background-color: #FFCB05; /* Changed Pale Tan to Yellow */
}

.about-content-section {
    padding: 40px 0;
}

.gap-large { gap: 40px; }

.editorial-text h2 {
    margin-bottom: 15px;
}

.lead-p {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.styled-checkbox-list {
    list-style: none;
}

.styled-checkbox-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.styled-checkbox-list li::before {
    content: "⚽";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.1rem;
}

.styled-checkbox-list strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 3px;
}

.text-dark { color: #112015; }
.text-light { color: #FAF8F2; }

.design-process-section {
    padding: 50px 0;
    border-top: 4px solid #112015;
    border-bottom: 4px solid #112015;
}

.step-box {
    padding-top: 40px;
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background-color: #1E5C3F; /* Forest Green step node */
    color: #FAF8F2;
    border: 3px solid #112015;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* CONTACT PAGE FORM */
.contact-section {
    padding: 40px 0 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-panel h3 {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    background-color: #FAF8F2;
    border: 3px solid #112015;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: inherit;
    font-weight: 700;
    color: #112015;
    box-shadow: inset 2px 2px 0px rgba(0,0,0,0.05);
}

.form-control:focus {
    outline: none;
    border-color: #1E5C3F; /* Forest Green focus border */
}

textarea.form-control {
    resize: vertical;
}

.alert-success {
    background-color: rgba(30, 92, 63, 0.15);
    border: 3px solid #1E5C3F;
    border-radius: 8px;
    padding: 15px;
    font-weight: 700;
    color: #1E5C3F;
}

/* LEGAL PAGES */
.legal-page-section {
    padding: 50px 0;
}

.legal-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.effective-date {
    font-weight: 800;
    color: #1E5C3F; /* Forest Green subtitle */
    font-size: 0.95rem;
    margin-top: 5px;
}

.cartoon-divider {
    border: none;
    border-top: 4px dashed #112015;
    margin: 25px 0;
}

.legal-box h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.legal-box p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #112015;
    font-weight: 600;
}

.legal-box ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-box li {
    font-weight: 600;
    margin-bottom: 8px;
}

.cookies-table-container {
    overflow-x: auto;
    margin: 15px 0;
}

.cookies-info-table {
    width: 100%;
    border-collapse: collapse;
    border: 3px solid #112015;
}

.cookies-info-table th,
.cookies-info-table td {
    border: 2px solid #112015;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

.cookies-info-table th {
    background-color: #FFCB05; /* Yellow header inside tables */
    color: #112015;
}

/* FOOTER SECTION */
.main-footer {
    background-color: #112015; /* Clean Dark forest charcoal instead of generic slate blue */
    color: #FAF8F2;
    padding: 50px 0;
    border-top: 4px solid #112015;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

.main-footer h4 {
    color: #FFCB05; /* High contrast Yellow headers */
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-disclaimer {
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-links ul,
.footer-legal-links ul {
    list-style: none;
}

.footer-links li,
.footer-legal-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-legal-links a {
    color: #FAF8F2;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-links a:hover,
.footer-legal-links a:hover {
    color: #FFCB05; /* Proper yellow highlight on hover */
    text-decoration: underline;
}

.address-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FAF8F2;
    line-height: 1.4;
    margin-bottom: 15px;
}

.copyright-text {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px dashed rgba(250, 248, 242, 0.2);
    padding-top: 10px;
}

/* COOKIE BANNER COMPONENT */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FAF8F2;
    border-top: 4px solid #112015;
    z-index: 5000;
    padding: 20px 0;
    box-shadow: 0 -10px 30px rgba(17, 32, 21, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content h4 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.cookie-content p {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cookie-content a {
    color: #1E5C3F; /* Forest Green color link */
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-preferences {
    margin-top: 15px;
    background-color: #FFCB05; /* Athletic Yellow prefs box background */
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #112015;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-preferences label {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #112015;
}

/* MISC & ANIMATION UTILITIES */
.hidden { display: none !important; }
.mt-2 { margin-top: 15px; }
.mt-3 { margin-top: 25px; }
.mb-2 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 35px; }

@keyframes bounce-rotate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(8deg); }
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .grid-2col, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .strip-body {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .match-pathway {
        max-width: 100%;
    }
    .strip-status {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1E5C3F; /* Elegant green background drawer */
        border-bottom: 4px solid #FFCB05;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(17, 32, 21, 0.2);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }
    
    .main-nav a {
        display: block;
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }
    
    .page-title-section {
        padding: 35px 0 25px;
    }
}

@media (max-width: 480px) {
    .route-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .matchup-row {
        flex-direction: column;
    }
    .vs-circle {
        margin: 5px 0;
    }
    .completion-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .legal-box {
        padding: 20px;
    }
}