    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f9fc;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header h1 {
  float: left;
  color: #1e88e5;
  margin-left: 20px;
}

nav {
  float: right;
  margin-right: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  color: #1e88e5;
}

header::after {
  content: "";
  display: table;
  clear: both;
}

/* Hero Section */
.hero {
  background: url("./images/news-4.jpg") no-repeat center center/cover;
  background-size: 100% 100%;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  height: 80vh;
}

.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: #1e88e5;
}

/* News Section */
.news {
  padding: 60px 0;
  background-color: #f0f0f5;
}

.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: #ffffff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.news-grid img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.news-grid h3 {
  margin-bottom: 10px;
}

.news-grid p {
  font-size: 0.9em;
}

/* Matches */
.match-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.match-card {
  background: #ffffff;
  padding: 20px;
  border-left: 4px solid #1e88e5;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}



/* Live Matches Section */
#live-matches {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f8f9fa;
}

#live-matches h2 {
  text-align: center;
  color: #1e88e5;
  margin-bottom: 2rem;
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.match-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid #4caf50;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s;
}


.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}


.match-type {
  background: #4caf50;
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  font-size: 0.8rem;
}

.teams {
  margin-bottom: 1rem;
}

.team {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

.score {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.betting-odds {
  display: flex;
  gap: 1rem;
}

.odds-btn {
  flex: 1;
  background: #1e88e5;
  color: white;
  border: none;
  padding: 0.6rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}





/* Footer */
footer {
  background-color: #f7f9fc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666666;
}
