body {
  margin: 0;
  font-family: sans-serif;
  background-color: #003399;
  color: white;
  padding-top: 80px;
}

header {
  position: fixed;      
  top: 0;              
  left: 0;           
  width: 100%;      
  z-index: 999;    
  background-color: #002266;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 40px;
  gap: 50px;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 250px;
}

.slider {
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slides img {
  min-width: 100%;
  height: 750px;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.players-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.players-section > h2 {
  font-size: 3rem;  
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.players-section h3 {
  text-align: center;
  margin-bottom: 20px;
}

.position-heading {
  font-size: 1.5rem;
  color: #ffffff;
  border-bottom: 2px solid #ffffff55;
  margin-top: 40px;
  padding-bottom: 5px;
}

.players-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
}

.player-card {
  width: 260px;
  background: #0044cc;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.player-card:hover {
  transform: translateY(-5px);
}

.card-header {
  text-align: center;
  padding: 20px;
}

.card-header img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.jersey-number {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}

.name {
  font-size: 1.3rem;
  margin-top: 5px;
  font-weight: bold;
}

.card-details {
  display: none;
  padding: 15px;
  font-size: 0.95rem;
  background-color: #0033aa;
  line-height: 1.4;
}

.player-card.open .card-details {
  display: block;
}
.schedule-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  color: white;
}

.schedule-section h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 30px;
}

.match-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #0044cc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.match-table th,
.match-table td {
  padding: 15px;
  border: 1px solid #ffffff44;
  text-align: center;
  font-size: 1.1rem;
}

.match-table th {
  background-color: #002266;
  font-weight: bold;
}

.schedule-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}
.schedule-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.countdown-timer {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffcc00;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  background-color: #001144;
  color: white;
  border-radius: 10px;
  overflow: hidden;
}
.schedule-table.show {
  opacity: 1;
  transform: translateY(0);
}
.schedule-table th,
.schedule-table td {
  padding: 15px;
  border-bottom: 1px solid #ffffff33;
}
.schedule-table thead {
  background-color: #002266;
}
.schedule-table tr:hover {
  background-color: #003366;
  transform: scale(1.02);
  transition: all 0.2s ease;
}

.schedule-section {
  text-align: center;
  margin: 100px auto;
  padding: 0 20px;
  max-width: 1000px;
}

.schedule-section h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: center;
}

.next-match {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.vs-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  color: black;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vs-graphic .team {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vs-graphic img {
  width: 100px;
  height: 65px;
  object-fit: cover;
  border: 3px solid white;
  border-radius: 8px;
  box-shadow: 0 0 10px #00000066;
  margin-bottom: 10px;
}

.vs-text {
  font-size: 4rem;
  font-weight: 900;
  color: #ffcc00;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.countdown {
  font-size: 2.5rem;
  font-weight: bold;
  color: black;
  margin-top: 20px;
}

.match-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  text-align: center;
}

.match-table th, .match-table td {
  padding: 15px 10px;
  border: 1px solid #ffffff66;
  font-size: 1.2rem;
}

.matches-section {
  background-color: white;
  color: #003399; 
  padding: 30px 20px; 
}

.schedule-section {
  background-color: white;
  color: #003399;
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 50px auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.schedule-section h2 {
  color: #003399; 
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: center;
}

.schedule-table th {
  background-color: #f0f0f0;
  color: #003399;
  font-weight: bold;
}
.full-width-white {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 900vw;
  background-color: white;
  color: #003399;
  padding: 60px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

