/* ======== CSS RESET & BASELINE ========== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F9FA;
  color: #25331f;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a {
  color: #376A4D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E63946;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* =============== COLOR SYSTEM (EARTH TONES & NATURAL ACCENTS) ============== */
:root {
  --primary: #13294B;       /* Navy/sporty-earth */
  --secondary: #E63946;     /* Dynamic red-earth */
  --accent: #F7F9FA;        /* Misty light earth background */
  --green: #376A4D;         /* Deep earthy green accent */
  --beige: #F2E9D8;         /* Subtle parchment for backgrounds */
  --brown: #70513D;         /* Woody earth contrast */
  --shadow: rgba(55, 106, 77, 0.05);  /* Green shadow touch */
}

/* =============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem;   margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 14px; color: var(--green); }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 10px; }
p, ul, ol, blockquote, cite {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #31412d;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  color: var(--brown);
  padding: 0 12px 0 28px;
  border-left: 4px solid var(--green);
}
cite { display: block; font-size: 0.95rem; color: var(--primary); font-weight: 500; margin-top: 8px; }
strong {
  color: var(--primary);
  font-weight: 600;
}
small {
  font-size: 0.92rem;
  color: var(--brown);
}

/* ================= LAYOUT CONTAINERS ================= */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--beige);
  border-radius: 28px 32px 24px 38px / 40px 26px 30px 35px;
  box-shadow: 0 2px 20px var(--shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
    border-radius: 16px;
  }
}

/* ================= ORGANIC SHAPES (Visual accents) ================= */
.section::before {
  content: '';
  position: absolute;
  left: -42px;
  top: -36px;
  width: 92px;
  height: 92px;
  background: var(--green);
  opacity: 0.08;
  border-radius: 55% 34% 61% 70%/54% 66% 44% 56%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}
.section > .container, .content-wrapper { position: relative; z-index: 1; }

/* ================== NAVIGATION (HEADER & FOOTER) =================== */
header {
  background: var(--accent);
  box-shadow: 0 1px 6px rgba(51,86,44,0.10);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 16px;
  transition: background 0.14s, color 0.18s;
}
header nav a.cta-primary,
.cta-primary {
  background: var(--green);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 24px 18px 26px 20px;
  box-shadow: 0 1px 9px 0 rgba(55,106,77,0.11);
  letter-spacing: 0.01em;
  border: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.25s;
}
header nav a.cta-primary:hover, .cta-primary:hover,
header nav a.cta-primary:focus, .cta-primary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 22px 0 rgba(230,57,70,0.13);
  outline: none;
}
header img {
  width: auto;
  height: 40px;
  object-fit: contain;
  border-radius: 9px;
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 6px;
  }
  header nav {
    display: none;
  }
}

/* ======================== MOBILE MENU ======================== */
.mobile-menu-toggle {
  display: none;
  background: var(--green);
  color: #fff;
  font-size: 2rem;
  padding: 6px 16px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(55,106,77,0.09);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  z-index: 1200;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
  outline: none;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--beige);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.62, 0.02, 0.57, 1.02);
  box-shadow: 0 0 60px rgba(51, 86, 44, 0.22);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 16px;
  margin: 28px 24px 18px auto;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 2000;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--green);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  margin-top: 24px;
  align-items: flex-start;
  padding-left: 36px;
  z-index: 1600;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: var(--primary);
  padding: 12px 0 12px 8px;
  border-radius: 14px;
  width: max-content;
  transition: background 0.13s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--green);
  color: #fff;
  outline: none;
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}


/* ======================== MAIN PAGES SECTIONS/TYPOGRAPHY ======================= */
/* Main page layouts */
main {
  background: transparent;
  flex: 1 1 auto;
}
main section {
  width: 100%;
}

/* CRITICAL ALIGNMENT PATTERNS - for all 'grid' or multi-item containers */
.card-container, .card-grid, .content-grid, .team-grid, .player-cards, .news-feed, .stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}
.card-container, .card-grid { gap: 24px; }
.content-grid { gap: 20px; }
.team-grid, .player-cards, .news-feed { gap: 24px; }
.stat-grid { gap: 20px; }
@media (max-width: 768px) {
  .card-container, .card-grid, .content-grid, .team-grid, .player-cards, .news-feed, .stat-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* Card element styles */
.card, .news-list-item, .player-cards > div, .team-grid > div, .stat-grid > div {
  background: #fff;
  border-radius: 24px 18px 27px 20px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.19s, transform 0.12s;
}
.card:hover, .news-list-item:hover, .team-grid > div:hover, .player-cards > div:hover, .stat-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(55,106,77,0.15);
  transform: translateY(-2px) scale(1.01);
}

/* Tables (Tabelle) */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(51,86,44,0.05);
  font-family: "Open Sans", Arial, sans-serif;
  margin-bottom: 24px;
  overflow: hidden;
}
thead {
  background: var(--green);
  color: #fff;
}
thead th {
  padding: 14px 12px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
tbody tr {
  border-bottom: 1px solid #e3e2df;
}
td, th {
  padding: 12px 10px;
  text-align: left;
  font-size: 1rem;
}
td img {
  vertical-align: middle;
  width: 32px;
  height: 32px;
  margin-right: 6px;
  border-radius: 14px;
  object-fit: cover;
}

@media (max-width: 600px) {
  table, tbody, thead, tr, td, th {
    font-size: 0.99rem;
    padding: 7px 4px;
  }
}

/* ========== Feature/Highlight lists ============= */
ul {
  list-style: none;
  margin-bottom: 24px;
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #25331f;
}
ul li img {
  width: 32px;
  height: 32px;
  margin-top: 2px;
  border-radius: 11px;
  background: var(--accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============ Filter controls ============== */
.filter-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.filter-controls select {
  padding: 7px 14px;
  border-radius: 18px;
  border: 1px solid #bbbeaf;
  background: #fcfbf7;
  color: var(--primary);
  font-size: 1rem;
  transition: border 0.14s;
}
.filter-controls select:focus { border-color: var(--green); }

/* =========== News feed/tag filter tabs ============= */
.news-feed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.news-list-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px 19px 18px 25px;
  box-shadow: 0 1px 11px 0px var(--shadow);
  padding: 24px 18px 20px 20px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.16s;
  position: relative;
  gap: 12px;
}
.news-list-item a {
  color: var(--green);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
  transition: color 0.2s;
}
.news-list-item a:hover, .news-list-item a:focus {
  color: var(--secondary);
}
.tag-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.tag-filter label {
  font-weight: 600;
  color: var(--primary);
}
.tag-filter ul {
  display: flex;
  gap: 10px;
}
.tag-filter a {
  padding: 5px 15px;
  background: #e8eee6;
  border-radius: 20px;
  color: var(--green);
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}
.tag-filter a:hover, .tag-filter a:focus {
  background: var(--green);
  color: #fff;
  outline: none;
}

/* =========== Testimonials ============= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 28px 22px 22px 18px;
  box-shadow: 0 1px 10px var(--shadow);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 700px;
}
.testimonial-card blockquote {
  color: var(--primary); /* Highest contrast on light background */
  border-left: 5px solid var(--green);
  background: transparent;
}
.testimonial-card cite {
  color: var(--green);
}
@media (max-width: 768px) {
  .testimonial-card { flex-direction: column; gap: 10px; max-width: 100%; }
}

/* ========== ORGANIC Cards in teams/players/stats ========== */
.team-grid > div,
.player-cards > div,
.stat-grid > div {
  background: #fff;
  border-radius: 26px 24px 21px 25px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow 0.19s, transform 0.12s;
}
.team-grid > div:hover,
.player-cards > div:hover,
.stat-grid > div:hover {
  box-shadow: 0 4px 36px 0 rgba(55,106,77,0.12);
  transform: scale(1.015) translateY(-3px);
}

.team-grid > div img, .player-cards > div img, .stat-grid > div img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  border-radius: 22px 15px 22px 16px;
  background: #f2f9f3;
  object-fit: contain;
}

/* =========== Contact Info =========== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 8px;
}
.contact-info p, .footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #31412d;
  margin-bottom: 4px;
}

.footer-contact img {
  width: 23px;
  height: 23px;
}

/* ============ Footer Styles ============== */
footer {
  background: var(--primary);
  color: #fff;
  margin-top: 60px;
  padding: 34px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  opacity: 0.86;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--green);
  color: #fff;
  outline: none;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
}
footer img {
  height: 38px;
  width: auto;
}
@media (max-width: 900px) {
  footer .content-wrapper { flex-direction: column; gap: 20px; align-items: flex-start; }
  footer nav { margin-bottom: 10px; }
  .footer-contact { margin-top: 10px; }
}

/* ============ Responsive order/typography ============ */
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; margin-bottom: 14px; }
  h2 { font-size: 1.28rem; margin-bottom: 10px; }
  h3 { font-size: 1.06rem; }
  p, blockquote, cite, ul li, .footer-contact p, .contact-info p { font-size: 0.98rem; }
}

/* =============== BUTTONS ================ */
button, .btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  background: var(--green);
  color: #fff;
  border-radius: 21px 15px 21px 17px;
  padding: 10px 24px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: background 0.14s, transform 0.14s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(230,57,70,0.13);
  outline: none;
}


/* ================== COOKIE CONSENT BANNER ================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--beige);
  color: #2b3725;
  box-shadow: 0 -2px 26px 0 rgba(55,106,77,0.13);
  z-index: 2500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 25px 34px;
  font-size: 1rem;
  border-radius: 12px 12px 0 0;
  opacity: 1;
  transition: bottom 0.22s, opacity 0.23s;
  animation: cookie-banner-in 0.5s cubic-bezier(0.7,0,0.34,1) both;
}
@keyframes cookie-banner-in {
  0% { opacity: 0; bottom: -65px; }
  100% { opacity: 1; bottom: 0; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 17px;
  font-size: 1rem;
  border-radius: 19px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-banner button.cookie-accept {
  background: var(--green);
}
.cookie-banner button.cookie-accept:hover {
  background: var(--secondary);
}
.cookie-banner button.cookie-reject {
  background: var(--secondary);
}
.cookie-banner button.cookie-reject:hover {
  background: var(--brown);
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: var(--green);
  border: 2px solid var(--green);
  font-weight: 700;
}
.cookie-banner button.cookie-settings:hover {
  background: var(--green);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 22px;
    padding: 18px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-buttons {
    gap: 12px;
  }
}

/* ===== Cookie Modal ======= */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%) scale(1);
  min-width: 340px;
  max-width: 92vw;
  background: #fff;
  color: #25331f;
  border-radius: 23px 19px 24px 21px;
  box-shadow: 0 5px 50px rgba(55,106,77,0.20);
  z-index: 2900;
  padding: 40px 38px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 1;
  animation: cookie-modal-in 0.42s cubic-bezier(.72,0,.34,1) both;
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: translate(-50%, -38%) scale(0.91); }
  100% { opacity: 1; transform: translate(-50%, -52%) scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: var(--primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 11px 0;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  accent-color: var(--green);
  width: 22px; height: 22px;
}
.cookie-modal .category-description {
  color: #584628;
  font-size: 0.97rem;
  margin-left: 12px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal button {
  padding: 9px 21px;
  border-radius: 17px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background: var(--green);
  color: #fff;
  transition: background 0.15s, color 0.14s;
}
.cookie-modal button.cookie-cancel {
  background: #fff;
  color: var(--green);
  border: 2px solid var(--green);
}
.cookie-modal button.cookie-cancel:hover {
  background: var(--green);
  color: #fff;
}
.cookie-modal button.cookie-save {
  background: var(--primary);
}
.cookie-modal button.cookie-save:hover {
  background: var(--secondary);
}
@media (max-width: 650px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 18px 6vw 18px 6vw;
  }
}

/* ========== MICRO-ANIMATION & HOVER STATES ========== */
.cta-primary, header nav a.cta-primary, .btn {
  position: relative;
  overflow: hidden;
}
.cta-primary::after, .btn::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width 0.35s, height 0.3s, opacity 0.25s;
  opacity: 0;
}
.cta-primary:active::after, .btn:active::after {
  width: 180px;
  height: 180px;
  opacity: 0.16;
  transition: 0s;
}

/* =============== UTILITY/HELPER CLASSES ============= */
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 24px !important; }
.w-100 { width: 100% !important; }
.text-center { text-align: center; }

/* Fix: prevent cards/testimonials overlapping, always force 20px+ margin */
.card, .testimonial-card, .news-list-item, .player-cards > div, .team-grid > div, .stat-grid > div {
  margin-bottom: 20px !important;
}

/* Accessibility: focus states */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

/* Hide visually but keep accessible for screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============ ADAPTIVE LAYOUTS ============ */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* Feature item alignment adjustments */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive spacings for all flex layouts */
@media (max-width: 800px) {
  .card-container, .content-grid, .team-grid, .player-cards, .news-feed, .stat-grid {
    gap: 15px !important;
  }
}

/* =========== FORM ELEMENTS (for potential forms) =========== */
input, select, textarea {
  border: 1px solid #bbbeaf;
  border-radius: 16px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.13s, box-shadow 0.12s;
  background: #fcfbf7;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(55,106,77,0.10);
}

/* =========== ACCESSIBLE COLOR CONTRAST =========== */
/* Testimonials/review text always dark on light bg */
.testimonial-card, .testimonial-card blockquote, .testimonial-card cite {
  color: #222;
  background: #fff;
}

/* =========== OVERLAY Z-INDEXS ========== */
.mobile-menu        { z-index: 1500; }
.mobile-menu-close  { z-index: 2000; }
.cookie-banner      { z-index: 2500; }
.cookie-modal       { z-index: 2900; }

/* =========== PRINT OPTIMIZATION =========== */
@media print {
  header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  main { padding: 0; margin: 0; }
  .section, .card, .news-list-item, .team-grid > div, .player-cards > div { box-shadow: none !important; background: #fff !important; }
}
