/* CSS DESIGN SYSTEM: MODERN NEUMORPHIC FOOTBALL ALMANAC */

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Styles & Custom Variables */
:root {
  /* Color Palette */
  --bg-cream: #F9F4E9;         /* Archival cream background */
  --bg-card-base: #F3EDE0;     /* Core neumorphic color for offset elements */
  --inky-blue: #1C3040;        /* Deep archive print text */
  --accent-burgundy: #8D3E48;  /* Shootouts & urgent highlights */
  --accent-forest: #446657;    /* Completed status and success flags */
  --accent-brass: #B18B4D;     /* Editorial tags and cover brass lines */
  --text-muted: #4e5a63;
  
  /* Neumorphic Shadows (Slightly warm/dark) */
  --neo-shadow-dark: #ded8cb;
  --neo-shadow-light: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-cream);
  color: var(--inky-blue);
  line-height: 1.6;
}

/* Accessibility Highlight */
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent-brass);
  outline-offset: 4px;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.small-container {
  max-width: 800px;
}

/* HEADER STYLE - Neumorphic Header Bar */
.neo-header {
  background: var(--bg-card-base);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #E6DEC2;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
}
.logo-brand {
  font-family: Georgia, serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--inky-blue);
  letter-spacing: -0.5px;
}
.logo-sub {
  font-family: sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--accent-brass);
}
.logo-link {
  text-decoration: none;
}

/* Navigation List */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--inky-blue);
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--bg-cream);
  box-shadow: inset 3px 3px 6px var(--neo-shadow-dark), inset -3px -3px 6px var(--neo-shadow-light);
  color: var(--accent-brass);
}

/* Menu Toggle for Mobile Navigation */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}
.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--inky-blue);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* MAIN CONTENT */
.main-content {
  padding: 3rem 0;
}

/* NEUMORPHIC CARDS */
.neo-card {
  background-color: var(--bg-card-base);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 12px 12px 24px var(--neo-shadow-dark), -12px -12px 24px var(--neo-shadow-light);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255,255,255,0.4);
}
.neo-card-interactive {
  background-color: var(--bg-card-base);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 8px 8px 16px var(--neo-shadow-dark), -8px -8px 16px var(--neo-shadow-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  color: inherit;
  display: block;
}
.neo-card-interactive:hover {
  transform: translateY(-2px);
  box-shadow: 14px 14px 28px var(--neo-shadow-dark), -14px -14px 28px var(--neo-shadow-light);
}
.neo-card-interactive:active {
  transform: translateY(1px);
  box-shadow: inset 4px 4px 8px var(--neo-shadow-dark), inset -4px -4px 8px var(--neo-shadow-light);
}

/* HERO / COVER SECTION */
.hero-cover {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 4.5rem 2.5rem;
  background: linear-gradient(135deg, var(--bg-card-base) 0%, #eeecdf 100%);
}
.cover-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(45deg, var(--accent-brass), var(--accent-brass) 10px, var(--inky-blue) 10px, var(--inky-blue) 20px);
}
.almanac-issue {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent-brass);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.cover-title {
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--inky-blue);
  letter-spacing: -1px;
}
.cover-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
}
.snapshot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--bg-cream);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  box-shadow: inset 3px 3px 6px var(--neo-shadow-dark), inset -3px -3px 6px var(--neo-shadow-light);
}
.badge-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-burgundy);
}
.badge-time {
  font-size: 0.9rem;
  font-weight: 600;
}

/* CHAPTER HEADINGS */
.chapter-badge {
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-brass);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
}
.chapter-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}
.chapter-header h1 {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.chapter-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
}
.data-snapshot-bar {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-burgundy);
  background: var(--bg-card-base);
  padding: 0.3rem 1rem;
  border-radius: 4px;
  margin-top: 1rem;
  box-shadow: inset 2px 2px 4px var(--neo-shadow-dark);
}

/* ALMANAC INDEX SECTION (Directory Grid) */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.chapter-num {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(177, 139, 77, 0.25);
  display: block;
}
.section-header h2 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  margin-top: -1rem;
  color: var(--inky-blue);
}
.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.index-num {
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--accent-brass);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.index-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.index-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.index-link-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-burgundy);
}

/* OVERVIEW HIGHLIGHTS */
.overview-section {
  margin-bottom: 4rem;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--bg-cream);
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  box-shadow: inset 1px 1px 3px var(--neo-shadow-dark);
  color: var(--accent-brass);
  margin-bottom: 1rem;
}
.overview-card h3 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.card-intro {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.mini-data-list, .host-status-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mini-data-item, .host-status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background: var(--bg-cream);
  border-radius: 12px;
  box-shadow: inset 2px 2px 5px var(--neo-shadow-dark), inset -2px -2px 5px var(--neo-shadow-light);
}
.team-line {
  font-size: 0.95rem;
  font-weight: 600;
}
.status-pill, .host-pill {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
}
.status-confirmed {
  background-color: #E2ECDE;
  color: var(--accent-forest);
}
.status-penalties {
  background-color: #F8E2E4;
  color: var(--accent-burgundy);
}
.host-adv {
  background-color: #E2ECDE;
  color: var(--accent-forest);
}
.host-pen {
  background-color: #EFE6D6;
  color: var(--accent-brass);
}

/* NEUMORPHIC BUTTON */
.neo-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--bg-card-base);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  box-shadow: 4px 4px 8px var(--neo-shadow-dark), -4px -4px 8px var(--neo-shadow-light);
  color: var(--inky-blue);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.neo-btn:hover {
  box-shadow: 6px 6px 12px var(--neo-shadow-dark), -6px -6px 12px var(--neo-shadow-light);
  transform: translateY(-1px);
}
.neo-btn:active {
  box-shadow: inset 3px 3px 6px var(--neo-shadow-dark), inset -3px -3px 6px var(--neo-shadow-light);
  transform: translateY(1px);
}
.btn-secondary {
  box-shadow: inset 1px 1px 2px var(--neo-shadow-dark), 4px 4px 8px var(--neo-shadow-dark);
  border: 1px solid rgba(0,0,0,0.05);
}
.btn-flat {
  background: transparent;
  box-shadow: none;
  border: 1px solid transparent;
}
.btn-flat:hover {
  box-shadow: inset 2px 2px 5px var(--neo-shadow-dark);
}

/* METHODOLOGY NOTE */
.methodology-note {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background-color: var(--bg-card-base);
  border-left: 5px solid var(--accent-brass);
  border-radius: 12px;
}
.note-icon-holder {
  flex-shrink: 0;
  color: var(--accent-brass);
}
.methodology-note h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.methodology-note p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CALENDAR CHAPTER SPECIFICS */
.calendar-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.calendar-day-block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.calendar-date-header {
  border-bottom: 2px solid var(--neo-shadow-dark);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.calendar-date-header h2 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--inky-blue);
}
.match-schedule-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2.2rem;
  margin-bottom: 0; /* Override standard card margin */
}
.match-time {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-brass);
  background: var(--bg-cream);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: inset 2px 2px 4px var(--neo-shadow-dark);
}
.match-pairing {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}
.match-pairing .team {
  font-size: 1.25rem;
  font-weight: 800;
}
.match-pairing .versus {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: bold;
  color: var(--text-muted);
  margin: 0 0.8rem;
}
.match-meta {
  width: 320px;
  text-align: right;
  border-left: 2px solid var(--neo-shadow-dark);
  padding-left: 1.5rem;
}
.round-indicator {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.badge-r16 {
  color: var(--accent-burgundy);
}
.advancement-path {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.advancement-path strong {
  color: var(--inky-blue);
}
.r16-route {
  border: 1.5px dashed var(--accent-brass);
}

/* RESULTS CHAPTER SPECIFICS */
.results-ledger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.results-ledger-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ledger-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--neo-shadow-dark);
  padding-bottom: 0.8rem;
}
.ledger-date {
  font-size: 0.85rem;
  font-weight: 700;
}
.ledger-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.scorecard-wrapper {
  margin-bottom: 1.5rem;
}
.scoreline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--bg-cream);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: inset 3px 3px 6px var(--neo-shadow-dark), inset -3px -3px 6px var(--neo-shadow-light);
}
.competitor {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.competitor.winner .team-name {
  color: var(--inky-blue);
  font-weight: 900;
}
.competitor.winner .team-score {
  color: var(--accent-forest);
}
.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}
.team-score {
  font-size: 2rem;
  font-weight: 800;
}
.score-divider {
  font-size: 1.5rem;
  font-weight: 300;
}
.shootout-banner {
  text-align: center;
  background-color: var(--accent-burgundy);
  color: white;
  padding: 0.4rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(141,62,72,0.2);
}
.ledger-outcome-details h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-brass);
  margin-bottom: 0.4rem;
}
.outcome-phrase {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent-forest);
  margin-bottom: 0.2rem;
}
.additional-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ROUTES CHAPTER SPECIFICS */
.routes-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.route-block {
  border-left: 6px solid var(--accent-brass);
}
.route-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 1px solid var(--neo-shadow-dark);
  padding-bottom: 0.5rem;
}
.route-pairing h3 {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 1.2rem;
}
.route-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background-color: var(--bg-cream);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: inset 2px 2px 5px var(--neo-shadow-dark);
  margin-bottom: 1rem;
}
.info-cell {
  display: flex;
  flex-direction: column;
}
.info-cell strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
}
.status-indicator {
  font-size: 0.9rem;
  font-weight: 800;
}
.confirmed-highlight {
  color: var(--accent-forest);
}
.pending-highlight {
  color: var(--accent-brass);
}
.route-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* HOST-PAGES SPECIFICS */
.host-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.host-status-card {
  display: flex;
  flex-direction: column;
}
.host-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.host-card-header h2 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
}
.host-detail-box {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.detail-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--neo-shadow-dark);
  padding-bottom: 0.6rem;
}
.detail-row strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}
.detail-row span {
  font-size: 1rem;
  font-weight: 700;
}
.route-note-row {
  border-bottom: none;
}
.route-note-row p {
  font-size: 0.95rem;
  color: var(--inky-blue);
  font-style: italic;
}

/* DOCUMENT STYLING (Legal pages, About) */
.document-card h1 {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-brass);
  padding-bottom: 0.8rem;
}
.doc-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 2rem;
}
.document-card h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem 0;
  color: var(--inky-blue);
}
.document-card p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}
.document-card ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
.document-card li {
  margin-bottom: 0.6rem;
}
.cookie-action-box {
  background-color: var(--bg-cream);
  margin-top: 3rem;
  padding: 1.8rem;
}
.cookie-action-box h4 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

/* FORM ELEMENTS - Neumorphic Style */
.contact-wrapper h1 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.form-instruction {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.editorial-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--inky-blue);
}
.neo-input {
  background-color: var(--bg-cream);
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: var(--inky-blue);
  font-size: 0.95rem;
  font-family: inherit;
  box-shadow: inset 3px 3px 6px var(--neo-shadow-dark), inset -3px -3px 6px var(--neo-shadow-light);
  transition: all 0.3s ease;
}
.neo-input:focus {
  outline: none;
  border-color: var(--accent-brass);
  box-shadow: inset 4px 4px 8px var(--neo-shadow-dark), inset -4px -4px 8px var(--neo-shadow-light);
}
.neo-select-wrapper {
  position: relative;
}
.neo-select {
  width: 100%;
  appearance: none;
  background-color: var(--bg-cream);
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  color: var(--inky-blue);
  box-shadow: inset 3px 3px 6px var(--neo-shadow-dark), inset -3px -3px 6px var(--neo-shadow-light);
  font-family: inherit;
}
.neo-select-wrapper::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--accent-brass);
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.error-msg {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-burgundy);
  min-height: 1rem;
  display: block;
}
.feedback-notification {
  padding: 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}
.feedback-success {
  background-color: #E2ECDE;
  color: var(--accent-forest);
  display: block;
}
.feedback-error {
  background-color: #F8E2E4;
  color: var(--accent-burgundy);
  display: block;
}

/* FOOTER */
.neo-footer {
  background-color: var(--bg-card-base);
  border-top: 2px solid #E6DEC2;
  padding: 4.5rem 0 2rem 0;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.footer-brand-column p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-links-column h4, .footer-address-column h4 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.footer-links-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links-column a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links-column a:hover {
  color: var(--accent-brass);
}
.address-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.address-nordic {
  margin-top: 1.2rem;
}
.footer-bottom {
  border-top: 1px solid var(--neo-shadow-dark);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 75%;
}
.footer-bottom a {
  color: var(--accent-brass);
  text-decoration: none;
  font-weight: 700;
}

/* COOKIE BANNER CONTAINER */
.cookie-banner-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 1.5rem;
  display: none; /* Controlled by JS */
}
.cookie-banner-content {
  max-width: 650px;
  margin: 0 auto;
  padding: 2rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.08), 12px 12px 24px var(--neo-shadow-dark);
  border: 1px solid #E6DEC2;
}
.cookie-banner-content h3 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.cookie-banner-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cookie-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-cream);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: inset 1px 1px 3px var(--neo-shadow-dark);
}
.cookie-checkbox input {
  cursor: pointer;
}
.chk-label {
  font-size: 0.85rem;
  font-weight: 600;
}
.chk-required {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN BREAKPOINTS */

@media (max-width: 1200px) {
  .hero-cover {
    padding: 3.5rem 2rem;
  }
  .cover-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-address-column {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation Menu */
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-card-base);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    border-top: 1px solid var(--neo-shadow-dark);
    border-bottom: 2px solid #E6DEC2;
  }
  .main-nav.mobile-active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.8rem;
  }
  .main-nav a {
    display: block;
    padding: 0.8rem 1rem;
  }
  
  /* Sections styling */
  .overview-grid, .results-ledger-grid {
    grid-template-columns: 1fr;
  }
  .match-schedule-card {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
  }
  .match-meta {
    width: 100%;
    text-align: center;
    border-left: none;
    border-top: 1px solid var(--neo-shadow-dark);
    padding-left: 0;
    padding-top: 1.2rem;
  }
  .cover-title {
    font-size: 2.2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .cover-title {
    font-size: 1.8rem;
  }
  .cover-subtitle {
    font-size: 1rem;
  }
  .neo-card {
    padding: 1.5rem;
  }
  .route-info-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-address-column {
    grid-column: span 1;
  }
}