* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #0d1425;
  --foreground: #fafafa;
  --card: #141b2e;
  --primary: #d4af37;
  --secondary: #1f2937;
  --accent: #eab308;
  --border: #2d3748;
  --gold: #d4af37;
  --navy: #0d1425;
  --danger: #dc2626;
  --success: #16a34a;
  --info: #3b82f6;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background-color: var(--gold);
  border-radius: 2px;
}

.logo img {
  display: block;
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--gold);
}

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

.bonus-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.bonus-title {
  font-weight: 600;
}

.bonus-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: var(--navy);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--navy);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-play {
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 2rem;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  background: linear-gradient(180deg, var(--navy), #1a2238);
  overflow: hidden;
}

.carousel-container {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  display: none;
  padding: 3rem 1rem;
}

.carousel-slide.active {
  display: block;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.slide-text {
  flex: 1;
}

.slide-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.slide-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.gold {
  color: var(--gold);
}

.slide-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
}

.slide-image {
  max-width: 500px;
  height: auto;
}

.promo-image,
.promo-image-small {
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

.promo-image-small {
  max-width: 300px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  border: 2px solid var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

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

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--gold);
  width: 40px;
  border-radius: 6px;
}

/* Games Navigation */
.games-nav {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 73px;
  z-index: 90;
}

.games-nav-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--card);
}

.games-nav-scroll::-webkit-scrollbar {
  height: 6px;
}

.games-nav-scroll::-webkit-scrollbar-track {
  background: var(--card);
}

.games-nav-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.game-category {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  background-color: var(--secondary);
  color: var(--foreground);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.game-category:hover {
  background-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

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

.section-title {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--foreground);
  opacity: 0.8;
  margin-bottom: 2rem;
}

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

.slot-card {
  background-color: var(--card);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

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

.slot-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
}

.slot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.slot-card:hover .slot-overlay {
  opacity: 1;
}

.slot-info {
  padding: 1rem;
}

.slot-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.slot-provider {
  font-size: 0.85rem;
  color: var(--gold);
}

/* Providers Section */
.providers-section {
  background-color: var(--card);
  padding: 3rem 0;
}

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

.provider-card {
  background-color: var(--background);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  border: 2px solid var(--border);
}

.provider-card:hover {
  transform: scale(1.05);
  border-color: var(--gold);
}

.provider-card img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%) brightness(1.2);
  transition: filter 0.3s;
}

.provider-card:hover img {
  filter: grayscale(0%) brightness(1);
}

.text-center {
  text-align: center;
}

/* Content Section */
.content-section {
  background-color: var(--background);
  padding: 3rem 0;
}

.content-article {
  max-width: 900px;
  margin: 0 auto;
  color: var(--foreground);
}

.content-article h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.content-article h2 {
  font-size: 2rem;
  color: var(--gold);
  margin: 2rem 0 1rem;
}

.content-article h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin: 1.5rem 0 1rem;
  opacity: 0.9;
}

.content-article h4 {
  font-size: 1.2rem;
  color: var(--gold);
  margin: 1rem 0 0.5rem;
}

.content-article p {
  margin-bottom: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-article ul,
.content-article ol {
  margin: 1rem 0 1rem 2rem;
  line-height: 1.8;
}

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

.table-responsive {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card);
  border: 1px solid var(--border);
}

.content-table th {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.2));
  color: var(--gold);
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--border);
  font-weight: 600;
}

.content-table td {
  padding: 1rem;
  border: 1px solid var(--border);
}

.content-table tr:hover {
  background-color: rgba(212, 175, 55, 0.05);
}

.info-box {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  line-height: 1.6;
}

.alert-danger {
  background-color: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
}

.alert-info {
  background-color: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

.alert-warning {
  background-color: rgba(234, 179, 8, 0.2);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #fde047;
}

.meta-info {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.7;
  margin: 1rem 0;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  margin-top: 0;
}

/* Footer */
.footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
}

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

.footer-col h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: var(--foreground);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-warning {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.footer-copyright {
  opacity: 0.7;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav {
    display: none;
  }
  
  .header-actions {
    flex-wrap: wrap;
  }
  
  .bonus-badge {
    display: none;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-amount {
    font-size: 1.8rem;
  }
  
  .slide-content {
    flex-direction: column;
    text-align: center;
  }
  
  .slide-image {
    max-width: 300px;
  }
  
  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .content-article h1 {
    font-size: 2rem;
  }
  
  .content-article h2 {
    font-size: 1.5rem;
  }
}
