:root {
  --primary-dark: #0a0e27;
  --secondary-dark: #151b3d;
  --accent-gold: #ffd700;
  --accent-emerald: #00d9a3;
  --accent-cyan: #00f0ff;
  --text-light: #ffffff;
  --text-gray: #b8c5d6;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  --card-bg: rgba(21, 27, 61, 0.6);
  --border-glow: rgba(0, 217, 163, 0.3);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  background-attachment: fixed;
}

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

header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--border-glow);
  box-shadow: 0 4px 30px rgba(0, 217, 163, 0.1);
}

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

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

.mobile-menu-toggle {
  display: none;
  background: var(--accent-emerald);
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-size: 24px;
}

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

nav ul li a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

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

nav ul li a:hover {
  color: var(--accent-emerald);
}

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

nav ul li a.active {
  color: var(--accent-gold);
}

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

h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
}

h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 50px 0 30px;
  background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 30px 0 20px;
  color: var(--accent-gold);
  line-height: 1.3;
}

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

.intro-section {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 50px;
  border: 1px solid var(--border-glow);
  box-shadow: 0 8px 32px rgba(0, 217, 163, 0.1);
}

.casino-table-wrapper {
  overflow-x: auto;
  margin: 50px 0;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 217, 163, 0.15);
}

.casino-table {
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  overflow: hidden;
  min-width: 800px;
}

.casino-table thead {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

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

.casino-table td {
  padding: 25px 15px;
  border-bottom: 1px solid rgba(184, 197, 214, 0.1);
  color: var(--text-gray);
  font-size: 16px;
}

.casino-table tbody tr {
  transition: all 0.3s ease;
  background: rgba(21, 27, 61, 0.4);
}

.casino-table tbody tr:nth-child(even) {
  background: rgba(21, 27, 61, 0.6);
}

.casino-table tbody tr:hover {
  background: rgba(0, 217, 163, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 217, 163, 0.2);
}

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

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

.casino-logo img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  background: white;
  padding: 5px;
  border-radius: 10px;
}

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

.casino-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

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

.play-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-cyan) 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 217, 163, 0.4);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.play-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 217, 163, 0.6);
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-emerald) 100%);
}

.play-button:active {
  transform: translateY(-1px);
}

.content-section {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  border: 1px solid var(--border-glow);
  box-shadow: 0 8px 32px rgba(0, 217, 163, 0.1);
}

.info-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.1) 100%);
  border-left: 4px solid var(--accent-gold);
  padding: 25px;
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.info-box h3 {
  margin-top: 0;
}

.expert-tip {
  background: linear-gradient(135deg, rgba(0, 217, 163, 0.1) 0%, rgba(0, 240, 255, 0.1) 100%);
  border-left: 4px solid var(--accent-emerald);
  padding: 25px;
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 217, 163, 0.1);
}

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

.pros-cons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.pros-list, .cons-list {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--border-glow);
}

.pros-list h3 {
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cons-list h3 {
  color: #f5576c;
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

ul.feature-list li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

ul.feature-list li::before {
  content: '✓';
  color: var(--accent-emerald);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

ul.cons-list li::before {
  content: '✗';
  color: #f5576c;
}

ol.numbered-list {
  padding-left: 25px;
  margin: 20px 0;
}

ol.numbered-list li {
  padding: 10px 0;
  color: var(--text-gray);
  font-size: 17px;
  line-height: 1.7;
}

ol.numbered-list li strong {
  color: var(--accent-gold);
}

.comparison-table {
  width: 100%;
  margin: 40px 0;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-glow);
}

.comparison-table th {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  padding: 18px 15px;
  text-align: left;
  font-weight: 700;
  color: var(--accent-gold);
  border-bottom: 2px solid var(--border-glow);
}

.comparison-table td {
  padding: 18px 15px;
  border-bottom: 1px solid rgba(184, 197, 214, 0.1);
  color: var(--text-gray);
}

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

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

footer {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px 0 20px;
  border-top: 2px solid var(--border-glow);
  margin-top: 80px;
}

.footer-content {
  text-align: center;
  color: var(--text-gray);
}

.footer-content p {
  font-size: 16px;
  margin-bottom: 10px;
}

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

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

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding: 20px 0;
  }

  nav ul.active {
    display: flex;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .intro-section, .content-section {
    padding: 25px;
  }

  .casino-table-wrapper {
    border-radius: 15px;
  }

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

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

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

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

  .play-button {
    padding: 12px 25px;
    font-size: 14px;
  }

  .pros-cons-container {
    grid-template-columns: 1fr;
  }

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

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

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

  h2 {
    font-size: 24px;
  }

  .logo {
    font-size: 22px;
  }

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

  p {
    font-size: 16px;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 217, 163, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(0, 217, 163, 0.7);
  }
}

.play-button:hover {
  animation: glow 2s infinite;
}
