@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, rgba(5, 5, 15, 0.85) 0%, rgba(15, 15, 35, 0.85) 100%), 
              url('../img/stadium.png') center/cover fixed;
  background-attachment: fixed;
  color: #f0f0f0;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  position: sticky;
  top: 0;
  z-index: 10;
}
header.glass {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.logo span {
  background: linear-gradient(90deg, #9d7dff, #5f3cff);
  -webkit-background-clip: text;
  color: transparent;
}
nav a {
  margin: 0 20px;
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
nav a:hover {
  color: #fff;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #9d7dff;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.lang {
  color: #aaa;
  cursor: pointer;
}
/* ===== FOOTER BUTTON ===== */
.btn-footer {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  background: rgba(157, 125, 255, 0.2);
  border: 1px solid rgba(157, 125, 255, 0.4);
  color: #9d7dff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-footer:hover {
  background: rgba(157, 125, 255, 0.4);
  box-shadow: 0 0 10px rgba(157, 125, 255, 0.5);
  transform: translateY(-2px);
}
/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 50px 60px;
  align-items: start;
  background: linear-gradient(135deg, rgba(5, 5, 15, 0.5) 0%, rgba(15, 15, 35, 0.5) 100%);
  border-radius: 20px;
  margin: 20px 40px 0px 40px;
  position: relative;
  min-height: auto;
}
.intro h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -1px;
  animation: slideInDown 0.7s ease;
}
.intro span {
  background: linear-gradient(120deg, #9d7dff, #5f3cff, #00c06d);
  -webkit-background-clip: text;
  color: transparent;
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
}
.btn-primary, .btn-green {
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(135deg, #9d7dff 0%, #5f3cff 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(157, 125, 255, 0.3);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  transition: left 0.8s ease;
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(157, 125, 255, 0.5);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-green {
  background: linear-gradient(135deg, #00c06d 0%, #009e50 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 192, 109, 0.3);
}
.btn-green::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  transition: left 0.8s ease;
  z-index: 1;
}
.btn-green:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 192, 109, 0.5);
}
.btn-green:hover::before {
  left: 100%;
}

/* ===== CARDS ===== */
.match-card, .player-week, .block, .gear-tips, .featured-gear {
  background: rgba(25, 25, 25, 0.85);
  border-radius: 18px;
  padding: 30px;
  border: 2px solid rgba(157, 125, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.match-card::before, .player-week::before, .block::before, .gear-tips::before, .featured-gear::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157, 125, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.match-card:hover, .player-week:hover, .block:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(157, 125, 255, 0.4);
  border-color: rgba(157, 125, 255, 0.7);
}
.match-card:hover::before, .player-week:hover::before, .block:hover::before {
  opacity: 1;
}
.score {
  font-size: 1.8rem;
  font-weight: 700;
  color: #9d7dff;
}
.teams {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 15px;
  font-weight: 600;
}

/* ===== CONTENT ===== */
.content {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  padding: 40px 60px;
  margin: 0;
}
.block h4 {
  margin: 0;
  color: #9d7dff;
}
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gear-grid div {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
}
.gear-grid div:hover {
  background: #3f3f65;
  box-shadow: 0 0 10px rgba(63, 63, 101, 0.6);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
  background: #080808;
  color: #777;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STATS PREVIEW ===== */
.stats-preview {
  background: linear-gradient(135deg, rgba(50, 20, 80, 0.4) 0%, rgba(30, 10, 60, 0.4) 100%);
  border: 2px solid rgba(157, 125, 255, 0.25);
  border-radius: 24px;
  padding: 60px;
  margin: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-preview::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(157, 125, 255, 0.08), transparent);
  pointer-events: none;
}

.stats-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  background: rgba(25, 25, 45, 0.8);
  border: 2px solid rgba(157, 125, 255, 0.2);
  border-radius: 18px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157, 125, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(157, 125, 255, 0.6);
  box-shadow: 0 20px 50px rgba(157, 125, 255, 0.3);
}
.stat-item:hover::before {
  opacity: 1;
}

.stat-item h4 {
  color: #9d7dff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.big-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #00c06d;
  margin: 15px 0;
  letter-spacing: -1px;
}

.stat-item p {
  color: #aaa;
  font-size: 0.9rem;
  margin: 5px 0;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
  background: linear-gradient(135deg, rgba(20, 40, 80, 0.4) 0%, rgba(30, 20, 60, 0.4) 100%);
  border: 2px solid rgba(0, 192, 109, 0.25);
  border-radius: 24px;
  padding: 60px;
  margin: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.featured-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 192, 109, 0.08), transparent);
  pointer-events: none;
}

.featured-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.news-item {
  background: rgba(25, 25, 45, 0.8);
  border: 2px solid rgba(0, 192, 109, 0.2);
  border-radius: 18px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.news-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 192, 109, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.news-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 192, 109, 0.6);
  box-shadow: 0 20px 50px rgba(0, 192, 109, 0.3);
}
.news-item:hover::before {
  opacity: 1;
}

.news-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: iconBounce 2s ease-in-out infinite;
}

.news-item h4 {
  color: #00c06d;
  margin: 15px 0;
  font-size: 1.3rem;
}

.news-item p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .content {
    grid-template-columns: 1fr;
  }
  
  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-preview,
  .featured-section {
    padding: 40px;
    margin: 30px 20px;
  }
  
  header {
    flex-direction: column;
    gap: 15px;
  }
  nav a {
    margin: 0 10px;
  }
}

@media (max-width: 600px) {
  .stats-cards {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== LIVE SCOREBOARD ===== */
.live-scoreboard {
  background: linear-gradient(135deg, rgba(30, 20, 60, 0.4) 0%, rgba(50, 20, 80, 0.4) 100%);
  border: 2px solid rgba(157, 125, 255, 0.25);
  border-radius: 24px;
  padding: 60px;
  margin: 40px;
  text-align: center;
}

.live-scoreboard h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 800;
}

.scoreboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.scoreboard-item {
  background: rgba(25, 25, 45, 0.9);
  border: 2px solid rgba(0, 192, 109, 0.2);
  border-radius: 18px;
  padding: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.scoreboard-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 192, 109, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.scoreboard-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 192, 109, 0.3);
  border-color: rgba(0, 192, 109, 0.6);
}
.scoreboard-item:hover::before {
  opacity: 1;
}

.match-time {
  color: #00c06d;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.match-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  gap: 10px;
}

.team-name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}

.match-score {
  font-size: 1.8rem;
  font-weight: 800;
  color: #9d7dff;
  min-width: 60px;
}

.competition {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 10px;
}

/* ===== TRAINING TIPS ===== */
.training-tips {
  background: linear-gradient(135deg, rgba(50, 30, 80, 0.4) 0%, rgba(30, 20, 60, 0.4) 100%);
  border: 2px solid rgba(157, 125, 255, 0.25);
  border-radius: 24px;
  padding: 60px;
  margin: 40px;
  text-align: center;
}

.training-tips h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 800;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.tip-card {
  background: rgba(25, 25, 45, 0.9);
  border: 2px solid rgba(157, 125, 255, 0.2);
  border-radius: 18px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.tip-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157, 125, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(157, 125, 255, 0.3);
  border-color: rgba(157, 125, 255, 0.6);
}
.tip-card:hover::before {
  opacity: 1;
}

.tip-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: iconBounce 2.5s ease-in-out infinite;
}

.tip-card h3 {
  color: #9d7dff;
  font-size: 1.1rem;
  margin: 15px 0;
}

.tip-card p {
  color: #aaa;
  font-size: 0.9rem;
  margin: 15px 0;
  line-height: 1.5;
}

.tip-level {
  display: inline-block;
  background: rgba(157, 125, 255, 0.2);
  color: #9d7dff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  margin-top: 12px;
}

/* ===== PLAYER SPOTLIGHT ===== */
.player-spotlight {
  background: linear-gradient(135deg, rgba(0, 50, 100, 0.3) 0%, rgba(20, 40, 80, 0.3) 100%);
  border: 2px solid rgba(0, 192, 109, 0.25);
  border-radius: 24px;
  padding: 60px;
  margin: 40px;
  text-align: center;
}

.player-spotlight h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 800;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-bottom: 40px;
}

.spotlight-player {
  background: rgba(25, 25, 45, 0.9);
  border: 2px solid rgba(0, 192, 109, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.spotlight-player::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 192, 109, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.spotlight-player:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 192, 109, 0.3);
  border-color: rgba(0, 192, 109, 0.6);
}
.spotlight-player:hover::before {
  opacity: 1;
}

.player-badge {
  display: inline-block;
  background: linear-gradient(135deg, #9d7dff, #5f3cff);
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.spotlight-player h3 {
  font-size: 1.8rem;
  margin: 15px 0 5px;
  color: #fff;
  font-weight: 800;
}

.player-team {
  color: #00c06d;
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.player-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0;
  background: rgba(157, 125, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-label {
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.stat-value {
  color: #9d7dff;
  font-size: 1.5rem;
  font-weight: 800;
}

.player-description {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 15px;
}

@media (max-width: 1400px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .scoreboard-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== VIDEO CONTAINER ===== */
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 60px auto;
  background: rgba(30, 30, 30, 0.92);
  border: 1px solid rgba(157, 125, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(157, 125, 255, 0.3);
  border-color: rgba(157, 125, 255, 0.5);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.video-title {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #9d7dff;
  text-align: center;
}

.video-description {
  margin-top: 15px;
  font-size: 1rem;
  color: #bbb;
  line-height: 1.6;
  text-align: center;
}

/* ===== PAGE MAIN STYLING ===== */
main.page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 30px;
}

main.page h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 20px rgba(157, 125, 255, 0.5);
}

main.page .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 50px;
}

