/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  background-color: #0a1628;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background-color: #002855;
  border-bottom: 1px solid rgba(30, 58, 95, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #ffd700, #daa520);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #002855;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.logo-accent {
  color: #ffd700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-bonus {
  background-color: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 1px solid #ffd700;
}

.btn-bonus:hover {
  background-color: #ffd700;
  color: #002855;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background-color: #ffd700;
  color: #002855;
}

.btn-primary:hover {
  background-color: #daa520;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ffd700;
}

/* Carousel */
.carousel-section {
  background-color: #002855;
  padding: 1.5rem 0;
}

.carousel {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 21 / 6;
  background-color: rgba(30, 58, 95, 0.2);
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  width: 2rem;
  background-color: #ffd700;
}

/* Slots Section */
.slots-section {
  padding: 3rem 0;
  background-color: #0a1628;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd700;
}

.view-all-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
}

.view-all-link:hover {
  transform: translateX(0.25rem);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.slot-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s;
  text-decoration: none;
  display: block;
}

.slot-card:hover {
  transform: translateY(-0.25rem);
}

.slot-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.slot-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 1rem;
  color: #ffffff;
}

.slot-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-hot {
  background-color: #ff4444;
  color: #ffffff;
}

.badge-new {
  background-color: #4444ff;
  color: #ffffff;
}

.badge-jackpot {
  background-color: #ffd700;
  color: #000000;
}

/* Providers Section */
.providers-section {
  padding: 3rem 0;
  background-color: #002855;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.provider-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.provider-card:hover {
  transform: scale(1.05);
}

.provider-card img {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
  background-color: #0a1628;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 2rem;
}

.content-text {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.8;
}

.content-text h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd700;
  margin: 3rem 0 1.5rem;
}

.content-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 2rem 0 1rem;
}

.content-text p {
  margin-bottom: 1.5rem;
}

.content-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content-text li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: #002855;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(30, 58, 95, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-text {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 58, 95, 0.3);
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .btn-bonus,
  .btn-outline {
    display: none;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav.active {
    display: flex;
  }

  .carousel {
    aspect-ratio: 21 / 9;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .slot-card img {
    height: 200px;
  }

  .providers-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .content-title {
    font-size: 1.75rem;
  }

  .content-text {
    font-size: 1rem;
  }
}
