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

:root {
  --primary: #00ff64;
  --secondary: #ff00ff;
  --background: #0a0a0a;
  --foreground: #f2f2f2;
  --card-bg: #1a1a1a;
  --border: #2a2a2a;
  --muted: #8c8c8c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Header */
header {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 30px -10px rgba(0, 255, 100, 0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--background);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

nav a:hover,
nav a.active {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 100, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 6.4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--background);
  box-shadow: 0 0 30px -10px var(--primary);
}

.btn-primary:hover {
  background-color: #00dd5a;
  box-shadow: 0 0 50px -5px var(--primary);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--foreground);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--foreground);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

/* Section */
section {
  padding: 4rem 2rem;
}

section h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 32px;
  background: var(--primary);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary);
}

/* Casino Table */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 50px -12px rgba(0, 255, 100, 0.1);
}

thead {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border);
}

th {
  padding: 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

tbody tr {
  transition: all 0.3s ease;
}

tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

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

.casino-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-img {
  width: 120px;
  height: 120px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.casino-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250, 204, 21, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #fcc515;
  font-weight: 600;
}

.bonus {
  color: var(--secondary);
  font-weight: 600;
}

.cashback {
  color: var(--foreground);
  font-weight: 500;
}

.min-deposit {
  color: var(--foreground);
  font-weight: 500;
}

/* Mobile Cards */
.casino-cards {
  display: none;
  gap: 1.5rem;
}

.casino-card {
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  border-radius: 0 0 8px 0;
}

.card-rank {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: monospace;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

.card-logo {
  width: 80px;
  height: 80px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.card-info h3 {
  font-size: 1.21rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #fcc515;
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stat-value {
  font-weight: 600;
  font-size: 1rem;
}

.stat-full {
  grid-column: 1 / -1;
}

.stat-full .stat-value {
  color: var(--foreground);
}

.card-button {
  width: 100%;
}

/* Content Section */
.content {
  max-width: 900px;
  margin: 0 auto;
}

.content h3 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content ul {
  list-style: none;
  margin: 1.5rem 0;
}

.content li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.content li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--primary);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 8px;
}

.stat-box h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.stat-box p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-weight: bold;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.8;
}

/* Footer */
footer {
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--foreground);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .container {
    padding: 0 1rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .table-wrapper {
    display: none;
  }

  .casino-cards {
    display: flex;
    flex-direction: column;
  }

  table {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  th, td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .logo-img {
    width: 90px;
    height: 90px;
  }

  .card-logo {
    width: 75px;
    height: 75px;
  }

  .casino-name {
    font-size: 1rem;
  }

  .card-info h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .stat-full {
    grid-column: 1;
  }
}
