:root {
  --primary-dark: #0a0e27;
  --secondary-dark: #1a1f3a;
  --accent-gold: #ffd700;
  --accent-emerald: #10b981;
  --accent-cyan: #06b6d4;
  --accent-neon: #00d9ff;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --card-bg: #1e293b;
  --hover-bg: #2d3a52;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

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

header {
  background: rgba(26, 31, 58, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

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

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-neon));
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-neon);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

main {
  padding: 3rem 0;
  min-height: calc(100vh - 200px);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1.5rem;
  color: var(--accent-gold);
  position: relative;
  padding-left: 1rem;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-neon));
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--accent-emerald);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.casino-table-wrapper {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.casino-cards {
  display: grid;
  gap: 1.5rem;
  margin: 3rem 0;
}

.casino-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-emerald), var(--accent-neon));
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 217, 255, 0.3);
  border-color: var(--accent-neon);
}

.casino-rank {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-emerald));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.casino-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
}

.casino-logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
  background: white;
  padding: 0.5rem;
  border-radius: 8px;
}

.casino-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

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

.detail-item {
  padding: 0.75rem;
  background: rgba(0, 217, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent-neon);
}

.detail-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.detail-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.casino-features {
  margin: 1.5rem 0;
}

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.features-list li {
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  position: relative;
  color: var(--text-secondary);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-emerald);
  font-weight: 700;
  font-size: 1.2rem;
}

.casino-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.play-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-emerald) 100%);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-neon) 100%);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(0, 217, 255, 0.2));
}

.comparison-table th {
  padding: 1.25rem;
  text-align: left;
  font-weight: 700;
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-neon);
}

.comparison-table td {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.comparison-table tr:hover {
  background: var(--hover-bg);
}

.info-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
  border-left: 4px solid var(--accent-emerald);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.info-box h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box h3::before {
  content: 'ℹ';
  width: 30px;
  height: 30px;
  background: var(--accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 700;
}

.content-section {
  margin: 3rem 0;
}

ul.styled-list,
ol.styled-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

ul.styled-list li,
ol.styled-list li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

ul.styled-list li::marker {
  color: var(--accent-gold);
}

ol.styled-list li::marker {
  color: var(--accent-emerald);
  font-weight: 700;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-neon), transparent);
  margin: 3rem 0;
  border: none;
}

footer {
  background: rgba(26, 31, 58, 0.95);
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
  border-top: 2px solid rgba(0, 217, 255, 0.2);
}

footer p {
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: rgba(26, 31, 58, 0.98);
    width: 100%;
    padding: 2rem;
    gap: 1rem;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    left: 0;
  }

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

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .casino-header {
    flex-direction: column;
    text-align: center;
    padding-left: 0;
  }

  .casino-logo {
    width: 100px;
    height: 50px;
  }

  .casino-details {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .play-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .casino-card {
    padding: 1.5rem;
  }

  .casino-rank {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
