.banner {
  background-image: url("/assets/images/banner.avif");
  background-size: cover;
  background-position: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  border-bottom: 3px solid #00D9FF;
  background-attachment: fixed;
  padding: 50px 20px;
  background: linear-gradient(135deg, rgba(0, 100, 150, 0.4), rgba(10, 25, 47, 0.95)),
    url("/assets/images/banner.avif");
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(10, 25, 47, 0.6));
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  h1 {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00D9FF, #00B8D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    line-height: 1.2;
  }
  p {
    color: #e0e6ed;
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
  }

  .badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    .badge {
      color: #00D9FF;
      font-size: 13px;
      font-weight: 600;
  
      transition: all 0.3s ease;
    }
    .badge:hover {
      transform: translateY(-2px);
    
    }
  }
}
/* Animation for banner content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-content h1 {
  animation: fadeInUp 0.8s ease-out;
}

.banner-content p {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.banner-content .badges {
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

@media (max-width: 992px) {
  .banner-content h1 {
    font-size: 2.8rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .banner {
    min-height: max-content;
    padding: 40px 20px;
  }

  .banner-content h1 {
    font-size: 2.2rem;
  }

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

  .badges {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

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

/* best casino */
.casino-section {
  text-align: center;
  padding: 10px 20px;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.5) 0%, rgba(26, 35, 50, 0.5) 100%);
  margin: 40px 0;
  border-radius: 20px;
}

.casino-section h2 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #00D9FF, #00B8D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.casino-section p {
  opacity: 0.9;
  margin-bottom: 20px;
  color: #e0e6ed;
  font-size: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
  padding: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: linear-gradient(135deg, #1a2332 0%, #242938 100%);
  border-radius: 16px;
  width: 100%;
  padding: 30px 30px 0 30px;
  position: relative;
  border: 2px solid #00D9FF;
  border-left: 5px solid #00D9FF;
  transition: all 0.3s ease;
  color: #fff;
  display: grid;
  grid-template-columns: 160px 140px 200px 1fr;
  grid-template-rows: auto 1fr;
  gap: 25px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.1);
}

.card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
  border-left-width: 8px;
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
}
.card-header img{
    height: 70px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.rank {
  position: absolute;
  top: -4px;
  left: -3px;
  background: linear-gradient(135deg, #00D9FF, #00B8D4);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.5);
  white-space: nowrap;
  z-index: 10;
}

.rating {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
  text-align: center;
  color: #ffd700;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  width: 100%;
}

.rating span {
  display: block;
}

.rating span:last-child {
  color: #00D9FF;
  font-weight: bold;
  font-size: 15px;
}

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

.bonus-box p {
  font-size: 11px;
  font-weight: bold;
  opacity: 0.7;
  color: #b8bcc8;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bonus-box h3 {
  font-size: 18px;
  margin: 0;
  color: #00D9FF;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
  font-weight: bold;
  line-height: 1.4;
}

.meta {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta p {
  font-size: 11px;
  opacity: 0.7;
  color: #b8bcc8;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta h4 {
  font-size: 22px;
  font-weight: bold;
  color: #00D9FF;
  margin: 0;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.features li {
  margin: 0;
  font-size: 12px;
  color: #e0e6ed;
  background: rgba(0, 217, 255, 0.1);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 217, 255, 0.3);
  text-align: center;
  line-height: 1.3;
}

.play-btn {
  display: block;
  background: linear-gradient(135deg, #00D9FF, #00B8D4);
  color: #fff;
  text-align: center;
  padding: 13px 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.play-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #00B8D4, #00D9FF);
}

.note {
  grid-column: 1 / -1;
  font-size: 10px;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  margin: 0;
  opacity: 0.6;
  color: #b8bcc8;
  line-height: 1.4;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.note:hover {
  opacity: 1;
  color: #00D9FF;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.card-content h3 {
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  font-size: 22px;
  margin: 0;
  color: #00D9FF;
  text-align: center;
}

.card-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  padding: 10px;
  min-height: 120px;
}

.card-right-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}

.card-right-section .card-content {
  padding: 5px;
  margin-bottom: 0;
  gap: 0;
}

/* Responsive for cards */
@media (max-width: 1200px) {
  .card {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .card-header {
    border-right: none;
    padding-bottom: 15px;
  }
  
  .card-section:nth-child(3) {
    padding-bottom: 15px;
  }
  
  .card-section:nth-child(4),
  .card-content {
    border-right: none;
  }
  
  .card-right-section {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding-top: 20px;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .cards {
    padding: 10px;
    gap: 20px;
  }
  
  .card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 30px 20px 0 20px;
    gap: 20px;
  }
  
  .card-header {
    justify-content: center;
    padding: 15px;

  }
  
  .card-section {
    border-right: none;
    min-height: auto;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  }
  
  .card-section:nth-child(4) {
    display: none;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-right-section {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding: 20px 15px 0 15px;
    padding-bottom: 0;
  }
  
  .note {
    padding: 12px 0;
  }
}

.why-section {
  background: transparent;
}

.why-container {
  background: linear-gradient(135deg, #111f36 0%, #1a2332 100%);
  border-radius: 16px;
  border: 2px solid rgba(0, 217, 255, 0.3);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
}

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

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

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

.why-item h3 {
  color: #00D9FF;
  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;
  }
}

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

/*      choose-section*/

.choose-section {
  padding: 60px 20px;
}

.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(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.choose-card {
  background: linear-gradient(135deg, #111a2c 0%, #1a2332 100%);
  border-radius: 14px;
  padding: 30px;
  border: 2px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.choose-card:hover {
  transform: translateY(-5px);
  border-color: #00D9FF;
  box-shadow: 0 8px 16px rgba(0, 217, 255, 0.3);
}

.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: 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: 20px;
  }

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