/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #0a1f44;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  color: #fff;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  padding: 8px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00aaff;
}



.nav-links li:hover .dropdown-menu {
  display: flex;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media(max-width:768px){
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #0a1f44;
    flex-direction: column;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}



/* HERO SECTION */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide {
  position: relative;
  padding-top: 2px;
  width: 100%;
  height: 80vh;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}


.hero-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.hero-content a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* NEWS SECTION */
.news-section {
  padding: 40px 5%;
  background: #f5f7fa;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* IMAGE SLIDER */
.news-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  border-radius: 15px;
}

/* NEWS CARDS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  background: #007bff;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 5px;
  margin-bottom: 10px;
}

.news-content h3 {
  margin-bottom: 10px;
}

.news-content p {
  font-size: 0.9rem;
  color: #555;
}

.news-content a {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-content h1 {
    font-size: 1.5rem;
  }
}

/* ARTICLE SECTION */
.article-section {
  padding: 60px 5%;
  background: #ffffff;
}

.article-container {
  max-width: 900px;
  margin: auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #007bff;
  text-decoration: none;
}

.article-header h1 {
  font-size: 2.2rem;
  margin: 10px 0;
}

.article-badge {
  background: #007bff;
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 5px;
}

.article-meta {
  color: #777;
  font-size: 0.9rem;
}

.article-image img {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
}

.article-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333;
}

.article-content blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  background: #f0f4ff;
  border-left: 4px solid #007bff;
  font-style: italic;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
