:root {
  --bg-dark: #0a0e27;
  --bg-secondary: #141b3d;
  --bg-card: #1a2142;
  --accent-gold: #ffd700;
  --accent-emerald: #10b981;
  --accent-cyan: #06b6d4;
  --accent-neon: #00d9ff;
  --text-primary: #ffffff;
  --text-secondary: #a8b2d1;
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --gradient-neon: linear-gradient(135deg, #00d9ff 0%, #00f5ff 100%);
  --shadow-glow: 0 4px 24px rgba(0, 217, 255, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

header {
  background: var(--bg-secondary);
  box-shadow: 0 2px 20px rgba(0, 217, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--accent-neon);
}

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

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

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

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  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-neon);
  transition: width 0.3s ease;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
  padding: 5px;
}

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

.hero-section {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 50px 0 30px;
  background: var(--gradient-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 35px 0 20px;
  color: var(--accent-cyan);
}

.content-section {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
}

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

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

.casino-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 900px;
}

.casino-table thead {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1e2849 100%);
}

.casino-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-neon);
  border-bottom: 2px solid var(--accent-neon);
}

.casino-table th:first-child {
  border-radius: 16px 0 0 0;
}

.casino-table th:last-child {
  border-radius: 0 16px 0 0;
}

.casino-table tbody tr {
  background: var(--bg-card);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.casino-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}

.casino-table tbody tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}

.casino-table td {
  padding: 25px 15px;
  font-size: 15px;
  color: var(--text-secondary);
  vertical-align: middle;
}

.casino-rank {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-gold);
  text-align: center;
  min-width: 50px;
}

.casino-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.casino-logo img {
  width: 80px;
  height: 50px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 8px;
}

.casino-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

.casino-bonus {
  font-weight: 600;
  color: var(--accent-emerald);
}

.casino-features {
  font-size: 14px;
  line-height: 1.6;
}

.play-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient-neon);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
  white-space: nowrap;
  text-align: center;
  min-width: 120px;
}

.play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6);
  background: var(--gradient-gold);
}

@media (max-width: 1024px) {
  .casino-table {
    min-width: 800px;
  }

  .casino-table th,
  .casino-table td {
    padding: 15px 10px;
    font-size: 14px;
  }

  .play-btn {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 15px 0;
  }

  .logo {
    font-size: 22px;
  }

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-secondary);
    transition: left 0.3s ease;
    padding: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  nav li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  nav a {
    display: block;
    padding: 20px;
    font-size: 18px;
  }

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

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .content-section {
    padding: 25px;
  }

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

  .casino-table {
    min-width: 700px;
  }

  .casino-table th,
  .casino-table td {
    padding: 12px 8px;
    font-size: 13px;
  }

  .casino-logo img {
    width: 60px;
    height: 40px;
  }

  .casino-name {
    font-size: 16px;
  }

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

  .play-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 90px;
  }
}

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

  main {
    padding: 40px 0;
  }

  .hero-section {
    padding: 30px 15px;
  }

  h1 {
    font-size: 26px;
  }

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

ul:not(nav ul) {
  margin: 25px 0;
  padding-left: 0;
  list-style: none;
}

ul:not(nav ul) li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

ul:not(nav ul) li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-emerald);
  font-weight: 900;
  font-size: 18px;
}

ol {
  margin: 25px 0;
  padding-left: 25px;
  counter-reset: item;
  list-style: none;
}

ol li {
  padding: 12px 0 12px 40px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  counter-increment: item;
}

ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--gradient-neon);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.info-box {
  background: rgba(0, 217, 255, 0.1);
  border-left: 4px solid var(--accent-neon);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.15);
}

.info-box h3 {
  margin-top: 0;
  color: var(--accent-neon);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table th {
  background: var(--bg-secondary);
  padding: 18px 15px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  border-bottom: 2px solid var(--accent-cyan);
}

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

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

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.pros, .cons {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.pros h3 {
  color: var(--accent-emerald);
}

.cons h3 {
  color: #ef4444;
}

.cons ul li::before {
  content: '✗';
  color: #ef4444;
}

@media (max-width: 768px) {
  .pros-cons-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }
}

footer {
  background: var(--bg-secondary);
  padding: 40px 0;
  margin-top: 80px;
  border-top: 2px solid var(--accent-neon);
  text-align: center;
}

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

.footer-content p {
  margin: 10px 0;
  font-size: 14px;
}

.expert-tip {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-left: 4px solid var(--accent-emerald);
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.expert-tip h3 {
  margin-top: 0;
  color: var(--accent-emerald);
}

strong {
  color: var(--text-primary);
  font-weight: 700;
}

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