/* ====== Header ====== */
header {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
h1,
h2 {
    text-align: center;
    color: #AA0114;
}

/* ====== Brand ====== */
.brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  padding-right: 15px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #AA0114;
  line-height: 1;
}

/* ====== Navigation ====== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a:active {
  color: #f4e92b;
}

/* ====== Top Players Section ====== */
.top-players {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.top-players h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #AA0114;
  font-weight: bold;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.player-card {
  background: #ffffff;
  border: 2px solid #AA0114;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.player-card img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}

.player-card h3 {
  color: #AA0114;
  margin: 10px 0 5px;
}

.player-card p {
  font-size: 0.95rem;
  color: #333;
}

.player-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #f4e92b;
}

.player-card:hover h3,
.player-card:hover p {
  color: #AA0114;
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #333;
  max-width: 600px;
  width: 90%;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px reba(0,0,0,0.15);
  font-size: 0.95rem;
  display: none;
  z-index: 9999;
}

.cookie-banner p {
  margin-bottom: 12px;
  line-height: 1.4;
}

.cookie-banner a {
  color: #AA0114;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-buttons button {
  background-color: #AA0114;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.9rem;
}

.cookie-buttons button:hover {
  background-color: #f4e92b;
}

.cookie-buttons #manage-cookies {
  background-color: #f4f4f4;
  color: #333;
  border: 1px solid #ccc;
}

.cookie-buttons #manage-cookies:hover {
  background-color: #ddd;
}


/* ====== Hamburger ====== */
.hamburger {
  display: none;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px;
  background-color: #AA0114;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #f4e92b;
}

/* ====== Responsive Navigation ====== */
  .hamburger {
    display: block;
    margin-left: 20px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 90px;
    right: 0;
    width: 100%;
    background-color: #AA0114;
    color: #f4e92b;
    text-align: center;
    padding: 20px 0;
    transition: 0.3s ease;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 16px 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }


/* ====== Division Cards ====== */
.division-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #ffffff;
  border: 2px solid #AA0114;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  padding: 30px 20px;
}

.card a {
  text-decoration: none;
  color: #AA0114;
  display: block;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #AA0114;
}

.card p {
  font-size: 1rem;
  color: #333;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #f4e92b;
}

.card:hover h3,
.card:hover p {
  color: #AA0114;
}
/* ====== Footer ====== */
footer {
  background-color: #AA0114;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 80px;
  height: auto;
}

.footer-logo span {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.footer-text {
  font-size: 0.9rem;
  margin: 10px 0;
}

.footer-credit {
  font-size: 0.9rem;
}

.footer-credit a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #ffffff;
}
/* ===== Footer Links (Privacy & Cookies) ===== */
.footer-container a[href="privacy.html"],
.footer-container #reopen-cookie-banner {
  color: #ffffff;             /* white text */
  text-decoration: none;      /* remove underline */
  font-weight: 500;           /* optional: makes them stand out */
}

.footer-container a[href="privacy.html"]:hover,
.footer-container #reopen-cookie-banner:hover {
  color: #f4e92b;             /* brand yellow on hover */
  text-decoration: underline; /* subtle hover cue */
}
/* ====== About League Section ====== */
.about-league {
  padding: 5px 5px;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-league h2, 
.about-league h3 {
  color: #AA0114;
  margin-bottom: 15px;
}

.about-league p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.1rem;
}

.about-league ul {
  margin: 20px 0;
  padding-left: 20px;
}

.about-league li {
  margin-bottom: 10px;
  color: #333;
}

.Maintenance{
  padding: 5px 5px;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.7;
}

.Maintenance h2, 
.Maintenence h3 {
  color: #AA0114;
  margin-bottom: 15px;
}

.Maintenence p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.1rem;
}

.content-container { 
  margin-bottom: 20px;
  color: #333;
  font-size: 1.1rem;
  {

