body {
  background-color: #0b1d3a;
  color: white;
  font-family: 'Oswald', sans-serif;
}

.navbar {
  background-color: #06142b;
}

.logo {
  width: 130px;
}

.social {
  display: flex;
  align-items: center;
}

.social a {
  color: white;
  font-size: 22px;
  margin-left: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.social a:hover {
  color: #3ea6ff;
  transform: scale(1.2);
}

.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
              url('https://images.unsplash.com/photo-1518091043644-c1d4457512c6') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
}

.btn-primary {
  background-color: #3ea6ff;
  border: none;
}

.card {
  background-color: #112b52;
  border: none;
  border-radius: 10px;
  color: white;
}

.footer {
  background-color: #06142b;
  padding: 20px;
  text-align: center;
}

.result-card {
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-card:hover {
  transform: translateY(-5px);
  background-color: #16386b;
}

.team-name {
  font-size: 1.2rem;
  opacity: 0.9;
}

.score {
  font-size: 2rem;
  font-weight: bold;
  color: #3ea6ff;
  margin: 10px 0;
}

.opponent {
  opacity: 0.7;
}

.sponsor-card {
  background-color: #112b52;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
}

.sponsor-card:hover {
  transform: translateY(-6px);
  background-color: #16386b;
}

.sponsor-card p {
  margin: 0;
  font-size: 0.95rem;
}

.icon {
  font-size: 28px;
}

.result-card {
  background-color: #112b52;
  border-radius: 12px;
  color: white;
  transition: 0.3s;
}

.result-card:hover {
  transform: translateY(-5px);
  background-color: #16386b;
}

.teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
}

.team span {
  font-size: 0.8rem;
  margin-top: 5px;
  text-align: center;
}

.team-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.score {
  font-size: 1.8rem;
  font-weight: bold;
  color: #3ea6ff;
}