* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background-color: #007acc;
  color: #f1f1f1;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
  float: left;
  color: #f1f1f1;
  margin-left: 20px;
}

nav {
  float: right;
  margin-right: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  color: #007BFF;
}

header::after {
  content: "";
  display: table;
  clear: both;
}

/* Hero */
/* .hero {
  text-align: center;
  padding: 100px 20px;
  background-color: #eef2f7;

  background: url() no-repeat;
  background-size: 100% 100%;

  height: 80vh;
} */

.hero {
   background: url(./images/NEWS-06.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.hero h2 {
   color: #f1f1f1;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
   color: #f1f1f1;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #007BFF;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.hero .btn:hover {
  background-color: #0056b3;
}

/* Section */
.section {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
}




/* Features Section */
.features {
    padding: 80px 0;
    background: #ffffff;
}
.section-title{
    text-align: center;
  margin-bottom: 40px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #2E7D32;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}




/* News Section */
.news {
  padding: 60px 0;
  background-color: #fff;
}

.news h2 {
  text-align: center;
  margin-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.news-grid article {
  background-color: #f1f1f1;
  padding: 15px;
  border-radius: 5px;
}

.news-grid img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.news-grid h3 {
  margin-bottom: 10px;
}

.news-grid p {
  font-size: 0.9em;
}



/* Footer */
footer {
  background-color: #007acc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #f1f1f1a8;
}




/* About Section */
.about {
  background-color: #f0f0f0;
  padding: 60px 0;
  text-align: center;
}

.about h2 {
    text-align: center;
  margin-bottom: 40px;
}


/* Live Scores Section */
.live-scores {
  padding: 60px 0;
  background: #f5f5f5;
  
}

.live-scores .score-cards{
  display: flex;
  flex-wrap: wrap;
}

.live-scores h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 600;
}

.score-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.score-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  min-width: 250px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.teams {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.vs {
  margin: 0 10px;
  color: #666;
  font-weight: 400;
}

.score {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
}

.status {
  font-size: 0.9rem;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 500;
}

.score-card:first-child .status {
  background: #e74c3c;
  color: white;
}

.score-card:last-child .status {
  background: #3498db;
  color: white;
}
