:root {
  --bg-primary: #09090B;
  --bg-secondary: #18181B;
  --bg-header-footer: #020617;
  --brand-primary: #06B6D4;
  --brand-secondary: #8B5CF6;
  --color-highlight: #22C55E;
  
  --card-bg: #111827;
  --card-light-bg: #1F2937;
  --border-main: #334155;
  --border-hover: #06B6D4;
  --border-glow: #8B5CF6;
  
  --soft-cyan: #ECFEFF;
  --soft-purple: #F5F3FF;
  --soft-green: #F0FDF4;
  
  --text-main: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  
  --btn-primary: #06B6D4;
  --btn-primary-hover: #0891B2;
  --btn-secondary: transparent;
  --btn-secondary-border: #475569;
  --btn-secondary-hover: #8B5CF6;
  
  --radius-main: 20px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-secondary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 8px;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Glass Cards & Effects */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--border-main);
  border-radius: var(--radius-main);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-main);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

.glow-panel {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.glow-panel:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background: var(--btn-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
  color: #fff;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
  background: var(--btn-secondary);
  border-color: var(--btn-secondary-border);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--btn-secondary-hover);
  color: var(--soft-purple);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* Header & Nav */
.site-header {
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-main);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-accent {
  color: var(--brand-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--brand-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section - Asymmetric */
.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, rgba(9,9,11,0) 70%);
  z-index: -1;
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 span {
  background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-dashboard-preview {
  position: relative;
  border-radius: var(--radius-main);
  background: var(--card-bg);
  border: 1px solid var(--border-main);
  padding: 1rem;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  box-shadow: -20px 20px 40px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.hero-dashboard-preview:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Dashboard UI Elements */
.dash-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-main);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.dash-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Trust/Disclosure Banner */
.trust-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-main);
  border-bottom: 1px solid var(--border-main);
  padding: 1.5rem 0;
  text-align: center;
}
.trust-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Comparison Table (Futuristic) */
.comparison-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius-main);
  border: 1px solid var(--border-main);
  background: var(--card-bg);
}

.futuristic-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.futuristic-table th, .futuristic-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-main);
}

.futuristic-table th {
  background: var(--bg-header-footer);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

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

.futuristic-table tbody tr:hover {
  background: var(--card-light-bg);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-gambling { background: rgba(6, 182, 212, 0.1); color: var(--soft-cyan); border: 1px solid var(--brand-primary); }
.badge-general { background: rgba(139, 92, 246, 0.1); color: var(--soft-purple); border: 1px solid var(--brand-secondary); }
.badge-success { background: rgba(34, 197, 94, 0.1); color: var(--soft-green); border: 1px solid var(--color-highlight); }

/* Review Grids */
.review-card {
  display: flex;
  flex-direction: column;
}
.review-card .meta {
  font-size: 0.85rem;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}
.review-card h3 {
  margin-bottom: 0.5rem;
}
.review-card .actions {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* Magazine Grid (Articles) */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.article-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-main);
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition);
}
.article-card:hover {
  border-color: var(--brand-primary);
}
.article-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.article-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--border-main);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  font-size: 1.5rem;
  color: var(--brand-primary);
  transition: var(--transition);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-top: 1rem;
  margin: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-main);
  border-radius: 8px;
  color: var(--text-main);
  font-family: inherit;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: var(--bg-header-footer);
  border-top: 1px solid var(--border-main);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--text-main);
  margin-bottom: 1.5rem;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: var(--text-secondary);
}
.footer-links a:hover {
  color: var(--brand-primary);
}
.footer-bottom {
  border-top: 1px solid var(--border-main);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-main);
  padding: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-text {
  flex: 1;
  min-width: 300px;
}
.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
}
.cookie-actions {
  display: flex;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-dashboard-preview {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    transition: var(--transition);
  }
  .nav-links.active {
    left: 0;
  }
  .mobile-menu-btn {
    display: block;
  }
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}

/* Content Pages (Legal & Review) */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.content-wrapper h2 {
  margin-top: 2.5rem;
  border-bottom: 1px solid var(--border-main);
  padding-bottom: 0.5rem;
}
.content-wrapper ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}
.content-wrapper li {
  margin-bottom: 0.5rem;
}
.editorial-note {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--brand-secondary);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

/* Review Headers */
.review-header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-main);
  padding: 4rem 0;
  text-align: center;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feature-icon {
  color: var(--color-highlight);
}