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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(to bottom, #0f1419 0%, #1a2332 100%);
  color: #e5e7eb;
  min-height: 100vh;
}

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

.header {
  background: #111827;
  border-bottom: 1px solid #1f2937;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #e5e7eb;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #10b981;
}

.nav-link.active {
  color: #10b981;
}

.page {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.page.active {
  display: block;
}

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

.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  color: #10b981;
  font-size: 14px;
  font-weight: 600;
}

.casinos {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.casino-card {
  background: #1a2332;
  border: 1px solid #2d3748;
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.casino-rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rank-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: white;
}

.rank-badge {
  background: #10b981;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.rank-badge.exclusive {
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
}

.casino-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.casino-logo {
  min-width: 120px;
}

.casino-name {
  font-size: 28px;
  font-weight: 800;
  color: #10b981;
  line-height: 1.1;
}

.casino-subtitle {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}

.casino-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  display: flex;
  gap: 4px;
}

.star {
  color: #fbbf24;
  font-size: 20px;
}

.rating-score {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.rating-votes {
  font-size: 12px;
  color: #6b7280;
}

.casino-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 300px;
}

.bonus-banner {
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
}

.exclusive-banner {
  background: linear-gradient(135deg, #8b6914 0%, #6b5310 100%);
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #d1d5db;
}

.features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
}

.min-deposit {
  font-size: 14px;
  color: #9ca3af;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn-primary-link {
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  width: 100%;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #9ca3af;
  border: 1px solid #4b5563;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: #10b981;
  color: #10b981;
}

.visit-link {
  color: #10b981;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.visit-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.disclaimer {
  margin: 60px 0 40px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.footer {
  background: #111827;
  border-top: 1px solid #1f2937;
  padding: 60px 0 40px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-content > p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  max-width: 900px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #10b981;
}

.age-badge {
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.footer-nav a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #10b981;
}

.footer-nav span {
  color: #4b5563;
}

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.content-page h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #fff;
}

.content-page h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #10b981;
}

.content-page h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #d1d5db;
}

.content-page p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #d1d5db;
}

.content-page ul {
  margin: 16px 0 16px 24px;
  color: #d1d5db;
}

.content-page li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a2332;
  border-top: 2px solid #10b981;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-content p {
  color: #d1d5db;
  font-size: 14px;
}

.cookie-link {
  color: #10b981;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

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

  .casino-info {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .casino-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 14px;
  }

  .hero-title {
    font-size: 32px;
  }

  .badges {
    gap: 12px;
  }

  .badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .casino-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .casino-info {
    flex-direction: row;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .logo span {
    display: none;
  }

  .nav {
    gap: 12px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero-title {
    font-size: 24px;
  }

  .badges {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.age-verification-modal.show {
  display: flex;
  animation: fadeIn 0.4s ease-out;
}

.age-modal-content {
  background: linear-gradient(135deg, #1a2332 0%, #111827 100%);
  border: 2px solid #10b981;
  border-radius: 20px;
  padding: 48px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.age-modal-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.age-modal-content p {
  font-size: 16px;
  color: #d1d5db;
  margin-bottom: 16px;
  line-height: 1.6;
}

.age-warning {
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 32px;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-age-confirm,
.btn-age-decline {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-age-confirm {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.btn-age-confirm:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-age-decline {
  background: transparent;
  border: 2px solid #4b5563;
  color: #9ca3af;
}

.btn-age-decline:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.responsible-gaming-notice {
  border-top: 1px solid #2d3748;
  padding-top: 24px;
  margin-top: 24px;
}

.responsible-gaming-notice p {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 12px;
}

.help-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.help-links a {
  color: #10b981;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.help-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .age-modal-content {
    padding: 32px 24px;
  }

  .age-modal-header h2 {
    font-size: 22px;
  }

  .age-actions {
    gap: 12px;
  }

  .help-links {
    flex-direction: column;
    gap: 8px;
  }
}
