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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
  min-height: 100vh;
  color: #1F2937;
}

.header {
  background: rgba(139, 92, 246, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-menu a:hover {
  opacity: 0.8;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

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

.btn-primary {
  background: #7C3AED;
  color: white;
}

.btn-primary:hover {
  background: #6D28D9;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn-play {
  background: #7C3AED;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin: 2rem 0;
}

.btn-play:hover {
  background: #6D28D9;
  transform: translateY(-2px);
}

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

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 2rem;
}

.hero-image {
  margin: 2rem 0;
}

.hero-laptop {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.casino-info {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.info-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}

.table-row {
  display: contents;
}

.table-header {
  background: #7C3AED;
  color: white;
  padding: 1rem;
  font-weight: 600;
  text-align: center;
}

.table-cell {
  background: white;
  padding: 1rem;
  border-bottom: 1px solid #E5E7EB;
}

.table-cell:first-child {
  font-weight: 600;
  background: #F3F4F6;
}

.description {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.description-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #374151;
}

.bonuses {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.bonuses-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1.5rem;
}

.bonuses-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 2rem;
}

.footer {
  background: rgba(31, 41, 55, 0.9);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.disclaimer {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu,
  .nav-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .bonuses-title {
    font-size: 1.8rem;
  }

  .main {
    padding: 1rem;
  }

  .nav {
    padding: 0 1rem;
  }

  .info-table {
    grid-template-columns: 1fr;
  }

  .table-header:last-child {
    display: none;
  }

  .table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .casino-info,
  .description,
  .bonuses {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

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

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-cell:first-child {
    font-weight: 700;
    background: #7C3AED;
    color: white;
  }

  .btn-play {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.casino-info,
.description,
.bonuses {
  animation: fadeInUp 0.6s ease-out;
}

.hero-laptop {
  transition: transform 0.3s ease;
}

.hero-laptop:hover {
  transform: scale(1.02);
}

/* Focus states for accessibility */
.btn:focus,
.nav-menu a:focus {
  outline: 2px solid #7C3AED;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-secondary {
    border: 2px solid white;
  }
  
  .table-cell {
    border: 1px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
