body {
  background-color: rgb(34, 34, 34);
  color: white;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
.page-container {
  width: 90%;
  margin: auto;
  padding: 20px;
  position: relative;
}

.page-container h1,
.page-container h2,
.page-container h4 {
  text-align: center;
  border-bottom: 2px solid white;
  padding-bottom: 10px;
  text-shadow: 1.5px 1.5px rgb(174, 174, 174);
}

p {
  text-align: center;
}

section {
  border: 2px solid white;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  border-radius: 10px;
}

.sponsor-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sponsor-item {
  background-color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 2px solid white;
  padding: 15px;
  border-radius: 8px;
}

.sponsor-item img {
  width: 150px;
  height: auto;
}

.sponsor-item p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 1.5;
}

.sponsor-level img {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Sponsorship cover image styling (why-sponsor) */
#why-sponsor .sponsor-cover {
  max-width: 760px;
  margin: 18px auto;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: 0 10px 25px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 6px;
}

#why-sponsor .sponsor-cover img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

@media (max-width: 1024px) {
  #why-sponsor .sponsor-cover { max-width: 640px; }
}

@media (max-width: 768px) {
  #why-sponsor .sponsor-cover { max-width: 95%; padding: 4px; border-radius: 8px; box-shadow: 0 6px 12px rgba(0,0,0,0.5); }
  #why-sponsor .sponsor-cover img { aspect-ratio: 4 / 5; }
}

/* Inline sponsorship link - match other styled links */
#why-sponsor .sponsor-link {
  color: rgb(127, 173, 226);
  text-decoration: none;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  cursor: pointer;
}

#why-sponsor .sponsor-link:hover,
#why-sponsor .sponsor-link:focus {
  text-decoration: underline;
  outline: none;
}
/* ____________________ Responsive ____________________ */
@media (max-width: 1024px) {
  .page-container { margin-top: 150px; }
  section { width: 90%; }
}

@media (max-width: 768px) {
  .page-container { margin-top: 170px; }
  .sponsor-item { flex-direction: column; text-align: center; }
  .sponsor-item img { width: 120px; }
}
