* {
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.heading {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #01175f;
}

.betting-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bet-card {
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 15px 18px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  transition: transform 0.3s;
  gap: 16px;
}

.bet-card:hover {
  transform: translateY(-3px);
}

.bet-card.featured {
  border: 2px solid #f8aa00;
}

.top-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #ff4757;
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 6px;
}

.rank {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #2563eb;
  border-radius: 20px;
  padding: 4px 10px;
  margin-right: 8px;
}

.logo-score-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
  margin-bottom: 6px;
}

.logo {
  width: 80px;
  height: auto;
  border-radius: 6px;
}

.score {
  font-size: 14px;
  font-weight: bold;
  color: #2563eb;
  background: #e0edff;
  padding: 4px 10px;
  border-radius: 16px;
  margin-top: 8px;
}

.info {
  display: flex;
  flex: 1;
  min-width: 160px;
  justify-content: center;
  margin-bottom: 6px;
}

.bonus {
  background: #f0f4ff;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
}

.bonus span {
  color: #f97316;
  font-size: 16px;
  font-weight: 800;
}

.offer {
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #ededed;
  flex: 1;
  min-width: 200px;
  margin-bottom: 6px;
}

.offer-description {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  font-weight: bold;
}

.promo-code {
  background: #eaf5ff;
  padding: 8px 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 13px;
  color: #01175f;
  border: 1px dashed #2563eb;
  margin-bottom: 6px;
}

.promo-code button {
  background: #1d3557;
  color: #fff;
  border: none;
  padding: 5px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.promo-code button:hover {
  background-color: #0d223b;
}

.cta-button {
  background: linear-gradient(to right, #007BFF, #0056b3);
  color: white !important;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
  margin-top: 8px;
}

.cta-button:hover {
  background: linear-gradient(to right, #0069d9, #004a99);
  transform: scale(1.05);
}

.details-offer {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
}

.details-offer li {
  list-style-type: none;
}

@media (max-width: 1024px) {
  .score {
    margin-top: 0;
  }

  .bet-card {
    flex-direction: column;
    align-items: stretch;
  }

  .logo-score-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
  }

  .logo {
    width: 70px;
  }

  .promo-code {
    width: 100%;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .info,
  .offer {
    margin-bottom: 8px;
  }
}
