    * {
  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);
}

/* Fans */
.fans .fan-box {
  background: #ffffff;
  padding: 20px;
  margin: 15px 0;
  border-left: 4px solid #43a047;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
  background-color: #f7f9fc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666666;
}
