/* ===============================
   OFFICIAL SPONSOR STYLE
================================ */
.official-sponsor {
  width: 100%;
  text-align: center;
  margin: 40px auto 60px;
}

.sponsor-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.sponsor-logos img {
  max-width: 200px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
  transition: transform 0.3s ease;
}

.sponsor-logos img:hover {
  transform: scale(1.05);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .sponsor-logos {
    gap: 20px;
  }

  .sponsor-logos img {
    max-width: 160px;
  }

  .sponsor-title {
    font-size: 18px;
  }
}

/* ===== HEADER LOGO CENTER ===== */
.site-header {
  width: 100%;
  background: linear-gradient(180deg, #3a0000, #000000);
  padding: 14px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.site-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .site-logo {
    max-width: 180px;
  }
}

/* === EXTRA SMALL === */
@media (max-width: 480px) {
  .site-logo {
    max-width: 150px;
  }
}

