* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d1117;
  color: #e6edf3;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background-color: #161b22;
  padding: 20px 0;
}

header h1 {
  float: left;
  color: #58a6ff;
  margin-left: 20px;
}

nav {
  float: right;
  margin-right: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #e6edf3;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  color: #58a6ff;
}

header::after {
  content: "";
  display: table;
  clear: both;
}









/* Hero Section */
 .hero {
  background: url("./images/NEWS-03.jpg") no-repeat center center/cover;
  object-fit: cover;
  background-size: 100% 100%;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  height: 90vh;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.buttons .btn {
  display: inline-block;
  background-color: #ff4500;
  color: #fff;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.buttons .btn:hover {
  background-color: #e03e00;
} 



/* Section */
.section {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #58a6ff;
}




/* Features Section */
.features-section {
    padding: 4rem 0;
   background-color: #0d1117;
}

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color:  #58a6ff;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
   background: #161b22;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: white;
}




/* Matches */
.match-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.match-card {
  background: #161b22;
  padding: 20px;
  border-left: 4px solid #58a6ff;
  border-radius: 8px;
  width: 300px;
}

/* Fans */
.fans .fan-box {
  background: #161b22;
  padding: 20px;
  margin: 15px 0;
  border-left: 4px solid #238636;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.05);
}


/* Footer */
footer {
  background-color: #0d1117;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #8b949e;
}
