:root {
  --primary-color: #0A2647;
  --secondary-color: #144272;
  --accent-color: #00D9FF;
  --gold-color: #FFD700;
  --text-light: #FFFFFF;
  --text-gray: #B8C5D6;
  --bg-dark: #040D19;
  --bg-card: #0F1922;
  --border-color: #1E3A5F;
  --success-color: #00FF87;
  --warning-color: #FFB800;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.header {
  background: rgba(10, 38, 71, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-color);
  background: rgba(0, 217, 255, 0.1);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 80%;
}

.hero {
  text-align: center;
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-bottom: 2px solid var(--border-color);
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--text-light), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

.casino-rating {
  padding: var(--spacing-xl) 0;
}

.casino-rating h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--spacing-xl);
  color: var(--accent-color);
}

.rating-cards {
  display: grid;
  gap: var(--spacing-lg);
}

.casino-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: var(--spacing-lg);
  align-items: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.casino-card:hover::before {
  opacity: 1;
}

.casino-rank {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
  border-radius: 50%;
  border: 2px solid var(--gold-color);
}

.casino-logo {
  width: 80px;
  height: 80px;
  background: var(--bg-dark);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-info {
  flex: 1;
  min-width: 0;
}

.casino-info h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-light);
}

.casino-features {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.feature-badge {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  border: 1px solid var(--accent-color);
  color: var(--text-light);
  white-space: nowrap;
}

.casino-pros {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.casino-pros li {
  font-size: 0.875rem;
  color: var(--text-gray);
  padding-left: 1.5rem;
  position: relative;
}

.casino-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

.casino-action {
  display: flex;
  align-items: center;
}

.btn-play {
  background: linear-gradient(135deg, var(--accent-color), #0099FF);
  color: var(--text-light);
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
  white-space: nowrap;
  text-align: center;
  display: inline-block;
}

.btn-play:hover {
  background: linear-gradient(135deg, #0099FF, var(--accent-color));
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5);
}

.content-section {
  background: var(--bg-card);
  padding: var(--spacing-xl) 0;
}

.main-content {
  max-width: 900px;
  margin: 0 auto;
}

.main-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  color: var(--accent-color);
}

.main-content h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.main-content h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gold-color);
}

.main-content p {
  margin-bottom: var(--spacing-md);
  color: var(--text-gray);
  line-height: 1.8;
}

.numbered-list,
.advantages-list {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.numbered-list li {
  margin-bottom: var(--spacing-md);
  color: var(--text-gray);
  line-height: 1.8;
}

.advantages-list {
  list-style: none;
  padding-left: 0;
}

.advantages-list li {
  margin-bottom: var(--spacing-md);
  padding-left: 2rem;
  position: relative;
  color: var(--text-gray);
  line-height: 1.8;
}

.advantages-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.25rem;
}

.info-block,
.expert-advice {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(20, 66, 114, 0.2));
  border-left: 4px solid var(--accent-color);
  padding: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  border-radius: var(--border-radius);
}

.expert-advice {
  border-left-color: var(--gold-color);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(20, 66, 114, 0.2));
}

.table-responsive {
  overflow-x: auto;
  margin: var(--spacing-lg) 0;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-dark);
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.comparison-table th,
.comparison-table td {
  padding: var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}

.comparison-table td {
  color: var(--text-gray);
}

.comparison-table tbody tr {
  transition: var(--transition);
}

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

.rating-stars {
  color: var(--gold-color);
  font-size: 1.25rem;
}

.footer {
  background: var(--primary-color);
  border-top: 2px solid var(--border-color);
  padding: var(--spacing-lg) 0;
  margin-top: var(--spacing-xl);
}

.footer-content {
  text-align: center;
}

.footer-content p {
  color: var(--text-gray);
  margin-bottom: var(--spacing-sm);
}

.disclaimer {
  font-size: 0.875rem;
  color: var(--warning-color);
}

@media (max-width: 1024px) {
  .casino-card {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
  }

  .casino-action {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: var(--spacing-md);
  }

  .btn-play {
    width: 100%;
    max-width: 300px;
  }
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 38, 71, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    transition: var(--transition);
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

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

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .casino-card {
    grid-template-columns: auto 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }

  .casino-rank {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .casino-logo {
    grid-column: 1 / -1;
    width: 100%;
    height: 100px;
    margin: var(--spacing-sm) 0;
  }

  .casino-info {
    grid-column: 1 / -1;
  }

  .casino-action {
    grid-column: 1 / -1;
    margin-top: var(--spacing-sm);
  }

  .btn-play {
    width: 100%;
  }

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

  .comparison-table thead {
    display: none;
  }

  .comparison-table tr {
    display: block;
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
  }

  .comparison-table td {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
  }

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

  .comparison-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-light);
  }
}

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

  .hero {
    padding: var(--spacing-lg) 0;
  }

  .casino-rating,
  .content-section {
    padding: var(--spacing-lg) 0;
  }

  .casino-info h3 {
    font-size: 1.25rem;
  }

  .casino-pros li {
    font-size: 0.813rem;
  }

  .btn-play {
    padding: 0.75rem 1.5rem;
    font-size: 0.938rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
