body {
  font-family: 'Dubai Regular', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.gradient-bg {
  background: linear-gradient(to bottom, #1a2e3b, #0d1720);
}

.games-bg {
  background: linear-gradient(to bottom, #f5f7fa, #293845, #1c2630);
}

.telegram-button {
  background-color: #2AABEE;
}

.claim-button {
  background-color: #6AC06F;
}

.more-slot-button {
  background-color: #6AC06F;
  box-shadow: 0 0 15px rgba(106, 192, 111, 0.7);
}

.game-card {
  transition: transform 0.3s ease;
}

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

.scrollbar-hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

/* Dubai font utility classes */
.font-dubai {
  font-family: 'Dubai Regular', 'Arial', sans-serif;
}

.font-dubai-light {
  font-family: 'Dubai Light', 'Arial', sans-serif;
}

.font-dubai-medium {
  font-family: 'Dubai Medium', 'Arial', sans-serif;
}

.font-dubai-bold {
  font-family: 'Dubai Bold', 'Arial', sans-serif;
}

/* Partner section styles */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

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

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}


.extra-link {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 255, 0);
}


.extra-link {
  top: 2px;
  right: 10px;
  width: 128px;
  height: 60px;
}

.mobile-view {
  display: block;
}

/* Mobile styles for hero section (default) */

.hero-container {
  width: 100%;
}

.hero-title {
  font-size: 24px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  line-height: 0.5;
  margin-bottom: 14px;
}

/* Desktop container for max-width layout */
.desktop-container {
  width: 100%;
}

/* Provider logo styles */
.provider-logo-container {
  background-color: white;
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.provider-logo-container:hover {
  transform: translateY(-3px);
}

/* Payment methods styles */
.payment-logo-container {
  border-radius: 1rem;
  padding: 0.5rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.payment-logo-container:hover {
  transform: translateY(-3px);
}

/* Responsive styles */
@media (min-width: 769px) {
  .telegram-link {
    top: 10px;
    right: 20px;
    width: 50px;
  }
  
  .extra-link {
    width: 100px;
    height: 60px;
    top: 2px;
    right: 10px;
    z-index: 9999;
  }
  
  .hero-container {
    max-width: 800px;
  }
}

@media (min-width: 1024px) {
  .mobile-view {
    display: none;
  }
  
  .desktop-view {
    display: block;
  }
  
  .hero-container {
    max-width: 980px;
  }
  
  .hero-content {
    max-width: 50%;
  }
  
  .hero-title {
    font-size: 30px;
  }
  
  .hero-description {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  /* Desktop container max-width */
  .desktop-container {
    max-width: 960px;
    margin: 0 auto;
  }
  
  /* Background styles for full-width sections */
  .bg-section {
    width: 100%;
  }
} 