:root {
  --txtclr: #ccc;
  --red: #f33;
}

.pitch {
  background: none;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 60px 20px 20px 20px;
  color: var(--txtclr);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pitch div {
  display: list-item;
  justify-content: center;
  gap: 4rem; /* optional spacing between lines */
  flex-wrap: wrap; /* allows wrapping on small screens */
}

.pitch p {
  margin: 0;
  font-size: 2rem;
}

.pitch a {
  text-decoration: none;
  color: inherit;
}

.sponsor-pitch {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 0 20px;
}

.download {
  text-align: center;
  margin: 40px 0;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.download-button {
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--txtclr);
  background-color: transparent;
  border: 2px solid var(--txtclr);
  border-radius: 8px;  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.download-button .icon {
  width: 32px;
  height: 32px;
  stroke: var(--txtclr);
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.download-button:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: #000;
  cursor: pointer;
}

.download-button:hover .icon {
  stroke: #000;
  transform: scale(1.1);
}

.contact-callout {
  text-align: center;
  margin: 40px 20px;
  font-size: 1.2rem;
  color: var(--txtclr);
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sponsors {
  padding: 40px 20px;
  text-align: center;
}

.sponsors h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--txtclr);
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.sponsor-logos img {
  height: 150px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--txtclr);
  border-top: 1px solid #222;
  margin-top: 4rem;
}