* {
  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: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;

}
header .container {
    display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

header h1 {
  font-size: 28px;
  color: #ffcc00;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #555;
  margin-right: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffcc00;
}

/* Hero */

.hero {
  background: url("./images/NEWS-03.jpg") no-repeat center center;
  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 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background-color: #ffcc00;
  color: #111;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  display: inline-block;
}


/* Live Updates */
.live-updates {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

.live-updates h2 {
  color: #222;
  margin-bottom: 10px;
}

/* Matches */
.top-matches {
  background-color: #ffffff;
  padding: 60px 0;
}

.top-matches h2 {
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}

.match-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #f4f4f4;
  padding: 20px;
  width: 250px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* About */
.about {
  padding: 60px 0;
   background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  text-align: center;
}

.about h2 {
 color: #ffffff;
  margin-bottom: 20px;
}

.about .container p {
  color: #ffffff;
}

/* Footer */
footer {
  background-color: #eeeeee;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

footer p {
  color: #555;
  margin-bottom: 10px;
}





/* Dark Analytics Section */
.dark-analytics-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
}

.analytics-content {
    display: flex;
    flex-direction: row;
   /* flex-wrap: wrap; */
    gap: 3rem;
    align-items: center;
}

.analytics-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.analytics-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e6ed;
    opacity: 0.9;
}


.analytics-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

