body {
  margin: 0;
  font-family: var(--font-family-body);
  background-color: black;
  color: white;
  -webkit-font-smoothing: antialiased;
}
	
.widget-box {
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
  font-family: var(--font-family-body);
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
		
.widgetbox-club150 {
  border: 3px solid gold;
}
.widgetbox-club100 {
  border: 3px solid silver;
}

.widgetbox-club150 {
  background: linear-gradient(
    rgba(255, 215, 0, 0.05),
    rgba(255, 215, 0, 0.05)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 3px solid gold;
  border-radius: 12px;
}

.widgetbox-club100 {
  background: linear-gradient(
    rgba(192, 192, 192, 0.05),
    rgba(192, 192, 192, 0.05)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 3px solid silver;
  border-radius: 12px;
}

.main-content {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  z-index: 0;
}

.background-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/campo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -2;
  pointer-events: none;
}

.hero-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 3.5rem;
  font-family: var(--font-family-display);
  padding-top: 6rem;
  margin-bottom: 4rem;
  line-height: 1.1;
}
.hero-title .white {
  color: white;
}
.hero-title .red {
  color: #e91922;
}

.title-desktop {
  display: inline;
}
.title-mobile {
  display: none;
}

.grid-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
.widget-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0;
}
.row-boxes {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.row-boxes .team-section {
  flex: 1;
}

.team-section {
  margin-bottom: 2rem;
}
.team-section h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  font-family: var(--font-family-display);
}
:root {
  --color-gold: gold;
  --color-silver: silver;
}

.gold-title {
  background-color: var(--color-gold);
  color: white;
  font-size: 1.7rem;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
}

.silver-title {
  background-color: var(--color-silver);
  color: white;
  font-size: 1.7rem;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
}

.sponsor-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  column-count: 3;
  column-gap: 2rem;
}

.sponsor-list.gold li {
  color: var(--color-gold);
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.sponsor-list.silver li {
  color: var(--color-silver);
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.sponsor-list li {
  margin-bottom: 0.8rem;
  break-inside: avoid;
}

#fireworks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 768px) {
  .main-content {
    padding: 0 1rem;
  }

  .grid-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .row-boxes {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
	.team-section {
    width: 100%;
  }

  .team-section h2 {
    font-size: 1.6rem;
    margin-left: 0;
    margin-bottom: 0.8rem;
    display: inline-block;
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
  }

 .widget-box {
  width: 100%;
  margin: 0;
  padding: 0.8rem;
  border-radius: 12px;
  box-sizing: border-box;
  overflow: hidden;
}


.sponsor-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  column-count: 3;
  column-gap: 0.5rem;
}

  .sponsor-list li {
    font-size: 0.90rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 1.4;
  min-height: auto;
    margin-bottom: 0.5rem;
  }

  .gold .sponsor-list li {
    color: #DAA520;
  }

  .silver .sponsor-list li {
    color: silver;
  }

  .gold-title {
    background-color: #DAA520;
    color: white;
  }

  .silver-title {
    background-color: silver;
    color: white;
  }
}