:root {
  --primary-dark: #0a0e27;
  --secondary-dark: #1a1f3a;
  --accent-gold: #ffd700;
  --accent-emerald: #50c878;
  --accent-cyan: #00d4ff;
  --accent-neon: #00ffff;
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  --gradient-emerald: linear-gradient(135deg, #50c878 0%, #7fffd4 100%);
  --gradient-cyan: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0f1425 50%, var(--secondary-dark) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 212, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyan);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--accent-cyan);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--accent-cyan);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}

main {
  padding: 60px 0;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 50px 0 25px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-emerald);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-cyan);
  margin: 30px 0 15px;
  line-height: 1.4;
}

.intro-text {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.casino-table-wrapper {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--secondary-dark);
  border-radius: 16px;
  overflow: hidden;
}

.casino-table thead {
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
}

.casino-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  color: var(--accent-cyan);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.casino-table td {
  padding: 25px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-table tbody tr {
  transition: all 0.3s ease;
}

.casino-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.05);
  transform: scale(1.01);
}

.casino-rank {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 40px;
}

.casino-logo-cell {
  min-width: 150px;
}

.casino-logo {
  max-width: 120px;
  height: auto;
  display: block;
}

.casino-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 8px;
}

.casino-features {
  max-width: 300px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-icon {
  color: var(--accent-emerald);
  font-size: 16px;
}

.casino-bonus {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.3;
}

.casino-bonus-sub {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 4px;
}

.btn-play {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient-emerald);
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(80, 200, 120, 0.4);
  white-space: nowrap;
  text-align: center;
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(80, 200, 120, 0.6);
  filter: brightness(1.1);
}

.content-section {
  background: var(--secondary-dark);
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.info-box {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(80, 200, 120, 0.1) 100%);
  border-left: 4px solid var(--accent-cyan);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

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

.info-icon {
  font-size: 24px;
}

.pros-list {
  list-style: none;
  margin: 20px 0;
}

.pros-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--primary-dark);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th {
  background: linear-gradient(135deg, #2a2f4a 0%, #3a3f5a 100%);
  padding: 18px 15px;
  text-align: left;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 15px;
}

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

.comparison-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.05);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
  margin: 20px 0;
}

.numbered-list li {
  counter-increment: item;
  padding: 15px 0 15px 50px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 15px;
  width: 35px;
  height: 35px;
  background: var(--gradient-cyan);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-cyan) 50%, transparent 100%);
  margin: 50px 0;
  opacity: 0.3;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.info-card {
  background: var(--secondary-dark);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-cyan);
}

.info-card h4 {
  color: var(--accent-cyan);
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  font-size: 24px;
}

footer {
  background: var(--primary-dark);
  border-top: 2px solid rgba(0, 212, 255, 0.2);
  padding: 40px 0;
  margin-top: 80px;
  text-align: center;
}

.footer-content {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

@media (max-width: 968px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  nav ul.active {
    display: flex;
  }

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

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .casino-table-wrapper {
    margin: 30px -20px;
    border-radius: 0;
  }

  .casino-table {
    display: block;
  }

  .casino-table thead {
    display: none;
  }

  .casino-table tbody {
    display: block;
  }

  .casino-table tr {
    display: block;
    margin-bottom: 30px;
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
  }

  .casino-table td {
    display: block;
    text-align: left;
    padding: 12px 0;
    border: none;
  }

  .casino-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 5px;
    font-size: 13px;
    text-transform: uppercase;
  }

  .casino-logo {
    max-width: 150px;
    margin: 10px 0;
  }

  .casino-rank {
    font-size: 32px;
  }

  .btn-play {
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 15px;
  }

  .content-section {
    padding: 25px 20px;
    margin: 30px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .intro-text {
    font-size: 16px;
  }

  .logo {
    font-size: 22px;
  }

  .content-section {
    padding: 20px 15px;
  }
}