:root {
  --midnight-blue: #000000; /* Black */
  --chalk: #0a0b0d; /* Very dark gray / black body background */
  --bright-cobalt: #00f0ff; /* Glowing neon blue */
  --coral: #0088ff; /* Medium neon blue accent */
  --pale-blue: #161a22; /* Slate/dark gray container background */
  --graphite: #a0aec0; /* Cool gray for neutral text */
  --white: #ffffff; /* White for readable text & bright highlights */
  --border-width: 2px;
  --cartoon-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
  --cartoon-shadow-sm: 0 0 6px rgba(0, 240, 255, 0.25);
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
  background-color: var(--chalk);
  color: var(--graphite);
  font-family: var(--font-family);
  line-height: 1.5;
  padding-bottom: 60px;
}

/* Typography & Global Neon Accent */
h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

a {
  color: var(--bright-cobalt);
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: var(--white);
}

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

/* Top bar notice */
.top-notice-bar {
  background-color: #000000;
  color: var(--bright-cobalt);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 10px;
  border-bottom: var(--border-width) solid var(--bright-cobalt);
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

/* Main Navigation */
.header-nav {
  background-color: #0c0d11;
  border-bottom: var(--border-width) solid var(--bright-cobalt);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.15);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 0 8px var(--bright-cobalt);
}

.logo-badge {
  background-color: #000000;
  color: var(--bright-cobalt);
  padding: 4px 8px;
  border: 2px solid var(--bright-cobalt);
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.8rem;
  transform: rotate(-3deg);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--graphite);
  border-bottom: 3px solid transparent;
  padding: 5px 0;
  transition: all 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--bright-cobalt);
  text-shadow: 0 0 5px var(--bright-cobalt);
}

.menu-toggle {
  display: none;
  background: #161a22;
  border: var(--border-width) solid var(--bright-cobalt);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  color: var(--bright-cobalt);
  box-shadow: var(--cartoon-shadow-sm);
}

.menu-toggle:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

/* Hero Poster Style */
.hero-poster {
  background-color: #0f1116;
  border-bottom: var(--border-width) solid var(--bright-cobalt);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-poster::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--bright-cobalt) 10%, transparent 11%);
  background-size: 24px 24px;
  opacity: 0.1;
  pointer-events: none;
}

.hero-tagline {
  background-color: #000000;
  color: var(--bright-cobalt);
  display: inline-block;
  padding: 6px 16px;
  font-weight: 900;
  text-transform: uppercase;
  border: var(--border-width) solid var(--bright-cobalt);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
  transform: rotate(1deg);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
  -webkit-text-stroke: 1px #000000;
}

.hero-desc {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-weight: 600;
  font-size: 1.15rem;
  color: #e2e8f0;
  background: #161a22;
  padding: 15px;
  border: var(--border-width) solid var(--bright-cobalt);
  border-radius: 12px;
  box-shadow: var(--cartoon-shadow);
}

/* Static Data Notice Bar */
.data-snapshot-banner {
  background-color: #161a22;
  color: var(--white);
  padding: 12px;
  border: var(--border-width) solid var(--bright-cobalt);
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 30px auto;
  max-width: 1160px;
  text-align: center;
  box-shadow: var(--cartoon-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.data-snapshot-banner .icon-alert {
  background-color: var(--bright-cobalt);
  color: #000000;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #000;
  font-weight: 900;
  box-shadow: 0 0 5px var(--bright-cobalt);
}

/* Date Chapters & Poster Strips */
.date-band {
  background-color: #0d0e12;
  color: var(--bright-cobalt);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 12px 20px;
  border: var(--border-width) solid var(--bright-cobalt);
  border-radius: 12px;
  margin: 40px 0 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.date-band-label {
  background-color: #000000;
  color: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 1rem;
  border: 2px solid var(--bright-cobalt);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

/* Decision Board */
.decision-board-wrapper {
  background-color: #0d0e12;
  border: var(--border-width) solid var(--bright-cobalt);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  padding: 30px;
  margin-bottom: 50px;
}

.board-title-group {
  border-bottom: var(--border-width) dashed var(--graphite);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.board-title-group h2 {
  font-size: 2.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.board-title-group p {
  font-weight: 600;
  color: var(--graphite);
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

@media (max-width: 900px) {
  .board-grid {
    grid-template-columns: 1fr;
  }
}

/* Poster Strips (Match Entries) */
.fixture-lane-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .fixture-lane-container {
    grid-template-columns: 1fr;
  }
}

.poster-strip {
  background-color: #161a22;
  border: var(--border-width) solid var(--graphite);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.poster-strip:hover {
  transform: translate(-2px, -2px);
  border-color: var(--bright-cobalt);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 2px solid #2d3748;
  padding-bottom: 8px;
}

.strip-group-badge {
  background-color: #0d0e12;
  color: var(--bright-cobalt);
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  border: 2px solid var(--bright-cobalt);
  font-size: 0.85rem;
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
}

.strip-date-badge {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bright-cobalt);
}

.strip-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.team-block {
  flex: 1;
  text-align: center;
  padding: 10px;
  background-color: #0d0e12;
  border: 2px solid var(--graphite);
  border-radius: 8px;
}

.team-block.left {
  border-right-width: 4px;
  border-right-color: var(--bright-cobalt);
}

.team-block.right {
  border-left-width: 4px;
  border-left-color: var(--bright-cobalt);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}

.team-stats {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--graphite);
}

.vs-badge {
  background-color: #000000;
  color: var(--bright-cobalt);
  font-weight: 900;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bright-cobalt);
  font-size: 0.9rem;
  flex-shrink: 0;
  transform: rotate(-10deg);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.strip-footer-info {
  background-color: #0d0e12;
  border: 2px solid var(--graphite);
  border-radius: 8px;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

.strip-footer-info strong {
  color: var(--bright-cobalt);
  text-shadow: 0 0 4px rgba(0, 240, 255, 0.4);
}

/* Group Reference Cards */
.group-strips-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.group-strip-card {
  background-color: #161a22;
  border: var(--border-width) solid var(--graphite);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.group-strip-header {
  background-color: #0d0e12;
  color: var(--white);
  padding: 12px 15px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.2rem;
  border-bottom: var(--border-width) solid var(--bright-cobalt);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.group-strip-header span {
  background-color: #000000;
  color: var(--bright-cobalt);
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--bright-cobalt);
  box-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

.group-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 2px solid #232a38;
  transition: background-color 0.2s ease;
}

.group-team-row:last-child {
  border-bottom: none;
}

.group-team-row:hover {
  background-color: #1d222d;
}

.team-identity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-rank-num {
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--bright-cobalt);
  width: 20px;
}

.team-label-name {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--white);
}

.team-metrics-strip {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

.metric-pill {
  background-color: #0d0e12;
  color: #cbd5e1;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--graphite);
  text-align: center;
}

.metric-pill.pts {
  background-color: #000000;
  color: var(--bright-cobalt);
  border-color: var(--bright-cobalt);
  box-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

/* Static Information Section Box */
.info-section-box {
  background-color: #161a22;
  border: var(--border-width) solid var(--bright-cobalt);
  border-radius: 16px;
  padding: 30px;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.info-section-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.info-section-box p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.info-list-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .info-list-features {
    grid-template-columns: 1fr;
  }
}

.info-list-features li {
  background: #0d0e12;
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid var(--graphite);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.info-list-features li::before {
  content: "✔";
  color: var(--bright-cobalt);
  font-size: 1.2rem;
  font-weight: 900;
  text-shadow: 0 0 5px var(--bright-cobalt);
}

/* Footer Layout with Address */
.footer-wrap {
  background-color: #07080a;
  color: #94a3b8;
  border-top: var(--border-width) solid var(--bright-cobalt);
  padding: 50px 0 20px 0;
  font-size: 0.95rem;
  margin-top: 60px;
  box-shadow: 0 -5px 15px rgba(0, 240, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-brand h4 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-shadow: 0 0 8px var(--bright-cobalt);
}

.footer-desc {
  font-weight: 500;
  color: #aab5c0;
  margin-bottom: 15px;
  max-width: 400px;
}

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

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #aab5c0;
  font-weight: 700;
}

.footer-links-list a:hover {
  color: var(--bright-cobalt);
  text-shadow: 0 0 4px var(--bright-cobalt);
}

.footer-address-box {
  background-color: #0d0e12;
  border: 2px solid var(--graphite);
  border-radius: 10px;
  padding: 20px;
}

.footer-address-box h5 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1rem;
  text-shadow: none;
}

.footer-address-box p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.footer-bottom {
  border-top: 1px solid #161a22;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-disclaimer-text {
  font-size: 0.8rem;
  color: #7d8d9e;
  width: 100%;
  margin-bottom: 15px;
}

/* Cookies Pop-Up Banner styling */
.cookie-alert-overlay {
  position: fixed;
  bottom: 25px;
  left: 25px;
  right: 25px;
  max-width: 700px;
  background-color: #161a22;
  border: var(--border-width) solid var(--bright-cobalt);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  border-radius: 16px;
  padding: 25px;
  z-index: 10000;
  display: none;
}

.cookie-alert-body {
  margin-bottom: 20px;
}

.cookie-alert-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--white);
}

.cookie-alert-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

.cookie-alert-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Button UI */
.btn-cartoon {
  background-color: #000000;
  color: var(--bright-cobalt);
  text-transform: uppercase;
  font-weight: 900;
  padding: 12px 20px;
  border: var(--border-width) solid var(--bright-cobalt);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  transition: all 0.15s ease;
  display: inline-block;
  text-align: center;
}

.btn-cartoon:hover {
  background-color: var(--bright-cobalt);
  color: #000000;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}

.btn-cartoon:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.btn-cartoon.secondary {
  background-color: #161a22;
  color: var(--graphite);
  border-color: var(--graphite);
  box-shadow: none;
}

.btn-cartoon.secondary:hover {
  background-color: #1c212c;
  color: var(--white);
  border-color: var(--bright-cobalt);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.btn-cartoon.minimal {
  background: none;
  border-color: transparent;
  box-shadow: none;
  color: var(--graphite);
  text-decoration: underline;
}

.btn-cartoon.minimal:hover {
  color: var(--bright-cobalt);
}

/* Form Styles */
.cartoon-form-group {
  margin-bottom: 20px;
}

.cartoon-form-group label {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--white);
}

.cartoon-input, .cartoon-textarea {
  width: 100%;
  padding: 12px 15px;
  border: var(--border-width) solid var(--graphite);
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  background-color: #0d0e12;
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cartoon-input:focus, .cartoon-textarea:focus {
  outline: none;
  border-color: var(--bright-cobalt);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.cartoon-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Legal text sheets */
.legal-box-paper {
  background-color: #161a22;
  border: var(--border-width) solid var(--graphite);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  padding: 40px;
  margin: 40px 0;
}

.legal-box-paper h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: var(--border-width) dashed var(--graphite);
  padding-bottom: 15px;
}

.legal-box-paper h2 {
  font-size: 1.5rem;
  margin: 25px 0 10px 0;
}

.legal-box-paper p {
  margin-bottom: 15px;
  font-weight: 500;
  color: #cbd5e1;
}

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

.legal-box-paper li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #cbd5e1;
}

/* Mobile responsive navigation overlay */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: #161a22;
    border: var(--border-width) solid var(--bright-cobalt);
    color: var(--bright-cobalt);
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #0c0d11;
    border: var(--border-width) solid var(--bright-cobalt);
    border-radius: 12px;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.3);
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }

  .hero-title {
    font-size: 2.3rem;
  }
}