.banner {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  color: white;
  text-align: center;
  background-attachment: fixed;
  padding: 30px;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: start;
  text-align: start;
  h1 {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #fff 0, #ffde2d 100%);
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: bold;
  }
  p {
    color: #b8bcc8;
    font-size: 18px;
    width: 80%;
    padding: 0;
  }

  .badges {
    display: flex;
    align-items: center;
    gap: 20px;
    .badge {
      border: 1px solid #ffde2d;
      background-color: rgba(0, 200, 150, 0.2);
      color: #ffde2d;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 15px;
      backdrop-filter: blur(10px);
    }
  }
}
@media (max-width: 992px) {
  .banner-content h1 {
    font-size: 2.4rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .banner {
    height: max-content;
    padding: 30px 0;
  }
  .banner-content {
    align-items: center;
    text-align: center;
  }
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 15px;
    /* padding: 0 15px; */
  }

  .badges {
    flex-direction: column;
    gap: 8px;
  }

  .badges .badge {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* best casino */
.casino-section {
  text-align: center;
  padding: 40px 0;
  color: #fff !important;
}

.casino-section h2 {
  font-size: 30px;
  font-weight: 700;
}

.casino-section p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: #242938;
  border-radius: 16px;
  width: 300px;
  padding: 20px;
  position: relative;
  text-align: left;
  border-top: 3px solid #ff9900;
  transition: 0.3s;
  color: #fff;
}

.card:hover {
  transform: translateY(-5px);
}

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

.card-header img {
  /* width: 120px; */
  height: 50px;
}

.rank {
  background: #ff9900;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
}

.rating {
  margin: 15px 0;
  font-size: 15px;
  opacity: 0.9;
  text-align: center;
}

.bonus-box {
  background: #ff9900;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.bonus-box p {
  font-size: 12px;
  font-weight: bold;
  opacity: 0.7;
}

.bonus-box h3 {
  font-size: 18px;
  margin-top: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.meta {
  margin: 20px 0 10px;
  background-color: #1f2437;
  padding: 10px;
  border-radius: 10px;
  border-left: 2px solid #ff9900;
  text-align: center;
}

.meta p {
  font-size: 12px;
  opacity: 0.7;
}

.meta h4 {
  font-size: 24px;
  font-weight: bold;
}

.features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.features li {
  margin: 6px 0;
  font-size: 14px;
  color: #b8bcc8;
}

.play-btn {
  display: block;
  background: #ff9900;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 15px;
}

.note {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
  opacity: 0.5;
}

.why-section {
  background: transparent;
}

.why-container {
  background: #111f36;
  border-radius: 16px;
  border: 1px solid #1f2f4a;
  padding: 30px;
}

.why-title {
  font-size: 28px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #ffde2d;
  font-weight: bold;
}

.why-title .icon {
  font-size: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}

.why-item h3 {
  color: #ffcc33;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item p {
  color: #c8d6e6;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-title {
    font-size: 20px;
  }
  .why-container {
    padding: 15px;
  }
}

/* choose-section*/

.choose-title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.choose-title .icon {
  font-size: 36px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.choose-card {
  background: #111a2c;
  border-radius: 14px;
  padding: 30px;
  border: 1px solid #23324a;
  transition: 0.3s ease;
  text-align: center;
}

.choose-card:hover {
  transform: translateY(-5px);
  border-color: #ffde2d;
  box-shadow: 0 8px 16px rgba(0, 200, 150, 0.2);
}

.choose-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.choose-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.choose-card p {
  color: #b8bcc8;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
  .choose-title {
    font-size: 20px;
    gap: 5px;
    margin-bottom: 30px;
  }
  .choose-title .icon {
    font-size: 30px;
  }
  .choose-card {
    padding: 15px;
  }

  .choose-icon {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
