:root {
  --primary-dark: #0a0e27;
  --secondary-dark: #1a1f3a;
  --accent-gold: #ffd700;
  --accent-emerald: #00d9a3;
  --accent-cyan: #00d4ff;
  --accent-neon: #7b61ff;
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --border-color: #2a3550;
  --card-bg: #151935;
  --hover-bg: #1f2442;
}

* {
  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(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--accent-cyan);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}

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

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

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

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

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

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

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

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

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

h1 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 50px 0 25px;
  color: var(--accent-cyan);
  position: relative;
  padding-left: 20px;
}

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

h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 35px 0 20px;
  color: var(--accent-emerald);
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.casino-rating {
  margin: 50px 0;
}

.casino-table-wrapper {
  overflow-x: auto;
  background: var(--card-bg);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.casino-cards {
  display: none;
}

.casino-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.casino-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.casino-rank {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
  min-width: 50px;
}

.casino-logo-wrapper {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px;
}

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

.casino-info {
  flex: 1;
}

.casino-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.casino-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

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

.casino-card-action {
  text-align: center;
}

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

.play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, var(--accent-emerald), var(--accent-gold));
}

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

.casino-table thead {
  background: var(--secondary-dark);
}

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

.casino-table td {
  padding: 25px 15px;
  border-bottom: 1px solid var(--border-color);
}

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

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

.rank-cell {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-gold);
  text-align: center;
  width: 80px;
}

.logo-cell {
  width: 150px;
}

.logo-cell img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

.action-cell {
  text-align: center;
  width: 200px;
}

.action-cell .play-btn {
  padding: 15px 30px;
  font-size: 16px;
  width: auto;
  min-width: 160px;
}

.content-section {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  margin: 40px 0;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

ul, ol {
  margin: 20px 0;
  padding-left: 30px;
}

ul li, ol li {
  margin: 15px 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

ul li::marker {
  color: var(--accent-emerald);
}

.pros-list {
  list-style: none;
  padding: 0;
}

.pros-list li {
  padding-left: 35px;
  position: relative;
  margin: 12px 0;
}

.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(--card-bg);
  border-radius: 10px;
  overflow: hidden;
}

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

.comparison-table th {
  background: var(--secondary-dark);
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

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

.info-box {
  background: linear-gradient(135deg, rgba(0, 217, 163, 0.1), rgba(0, 212, 255, 0.1));
  border-left: 4px solid var(--accent-emerald);
  padding: 25px;
  margin: 30px 0;
  border-radius: 10px;
}

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

.info-box p {
  margin-bottom: 0;
}

.gradient-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-emerald), var(--accent-cyan));
  border: none;
  margin: 50px 0;
  border-radius: 2px;
}

footer {
  background: var(--primary-dark);
  border-top: 2px solid var(--accent-cyan);
  padding: 40px 0;
  margin-top: 80px;
}

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

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  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: 1024px) {
  .casino-table {
    min-width: 800px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }
}

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

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    padding: 30px 0;
    border-bottom: 2px solid var(--accent-cyan);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }

  nav li {
    border-bottom: 1px solid var(--border-color);
  }

  nav a {
    display: block;
    padding: 20px 0;
  }

  .casino-table-wrapper {
    display: none;
  }

  .casino-cards {
    display: block;
  }

  h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

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

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

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

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

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

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

  .logo {
    font-size: 22px;
  }

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

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

  .play-btn {
    padding: 15px 30px;
    font-size: 16px;
  }

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

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
