    body {
      background-color: #f0f2f5;
      font-family: 'Inter', sans-serif;
      color: #333;
    }

    .header {
      background-color: #1a1a1a;
      padding: 10px 0;
      border-bottom: 3px solid #d4af37;
    }

   .game-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.game-card .card-icon {
  margin-right: 12px;
  font-size: 1.2rem;
}

.card-cricket {
  background-image: url('./images/cricket.jpg');
}

.card-football {
  background-image: url('./images/football.jpg');
}

.card-tennis {
  background-image: url('./images/tennis.jpg');
}

.card-horse-racing {
  background-image: url('./images/horse-bg.jpg');
}

.card-e-cricket {
  background-image: url('./images/e-cricket-quick-bg.jpg');
}

.card-evolution {
  background-image: url('./images/evolution-quick-bg.jpg');
}

.card-aviator {
  background-image: url('./images/aviator.jpg');
}

.card-sportsbook {
  background-image: url('./images/sportsbook.jpg');
}

/* Optional: Center text on small screens */
@media (max-width: 575.98px) {
  .game-card {
    justify-content: center;
    text-align: center;
  }

  .game-card .card-icon {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}

.game-img {
  max-width: 190px;
  width: 100%;
  height: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

  .game-img:hover {
    transform: scale(1.05);
  }
.cashino {
  position: relative;
  width: 100%;
  padding-top: 39%; /* Maintains 273x107 ratio = 107 / 273 ≈ 39% */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.cashino:hover {
  transform: scale(1.03);
}

.cashino img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}


    .game-box {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .game-box .game-img {
      width: calc(100% - 5px);  /* Shrink width by ~20px */
      max-height: 180px;         /* Shrink height by ~20px */
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }

    @media (max-width: 576px) {
      .game-box .game-img {
        width: calc(100% - 10px);  /* Slightly less shrink for small screens */
        max-height: 160px;
      }
    }


section.reddy-anna-book {
  background: linear-gradient(to right, #240202, #7e112d);
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.btn-yellow {
  background-color: #e1db00;
  color: #000;
  font-weight: bold;
  border-radius: 40px;
  padding: 12px 40px;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
  font-size: 18px;
}

.btn-yellow:hover {
  background-color: #d4cd00;
  color: #000;
  transform: scale(1.05);
}

.main-img-box {
  max-width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.main-img-box img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  object-fit: cover;
}




      .custom-card {
      width: 315px;
      height: 310px;
      border-radius: 25px;
      background-color: #fff;
      padding: 0 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    }

    .custom-card img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin: 0 auto 20px;
    }

     .customer-care-section {
      background: linear-gradient(to right, #0b0000, #a70f32);
      color: white;
      padding: 60px 0;
    }
    .contact-btn {
      background-color: #ffcd00;
      color: black;
      font-weight: bold;
      border-radius: 50px;
      padding: 15px 70px;
      border: none
    }