.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.page-header-v4 {
  padding: 40px 0 60px;
  text-align: left;
}

.page-year-v4 {
  font-weight: 900;
  font-size: 64px;
  color: #ab9ed4;
  line-height: 1;
  margin-bottom: -16px;
  position: relative;
  z-index: 0;
  letter-spacing: -2px;
}

.page-title-v4 {
  font-weight: 900;
  font-size: 56px;
  color: #522d80;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.page-subtitle-v4 {
  font-weight: 400;
  font-size: 15px;
  color: #666;
  margin-top: 10px;
  display: block;
}

.section-header-v4 {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.section-title-v4 {
  font-weight: 900;
  font-size: 40px;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 20px;
}

.section-line {
  flex-grow: 1;
  height: 1px;
  background-color: #ddd;
}

.section-subtitle-v4 {
  font-weight: 700;
  font-size: 14px;
  color: #522d80;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 20px;
}

.players-container {
  padding-bottom: 80px;
  background-color: #fff;
}
.page-title-2026 {
  text-align: center;
  color: #522d80;
  margin-bottom: 60px;
  font-size: 30px;
}
.section-title {
  color: #522d80;
  font-size: 26px;
  margin-bottom: 20px;
  border-bottom: 2px solid #522d80;
  display: inline-block;
  padding-bottom: 5px;
}
.players-section {
  margin-bottom: 80px;
}
.players-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile: 2 columns */
  gap: 10px;
}


/* Tablet: 3 columns */
@media (min-width: 600px) {
  .players-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* PC: 5 columns */
@media (min-width: 992px) {
  .players-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


.player-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.player-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.player-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.player-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Overlay Styles */
.player-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  text-align: center;
}

.player-item:hover .player-info-overlay {
  opacity: 1;
}



/* Mobile adjustments */
@media (max-width: 768px) {
  .section-header-v4 {
    margin-bottom: 20px;
  }
  .page-year-v4 {
    margin-bottom: -10px;
    font-size: 32px;
  }
  .page-title-v4 {
    font-size: 28px;
  }
  .section-title-v4 {
    font-size: 28px;
  }
}
