/* TurboWins Casino Static Export - Complete CSS */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* CSS Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --background: 0 0% 0%;
  --foreground: 0 0% 100%;
  --card: 0 0% 5%;
  --card-foreground: 0 0% 100%;
  --popover: 0 0% 8%;
  --popover-foreground: 0 0% 100%;
  --primary: 174 100% 45%;
  --primary-foreground: 0 0% 0%;
  --secondary: 0 0% 10%;
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 12%;
  --muted-foreground: 0 0% 60%;
  --accent: 174 100% 45%;
  --accent-foreground: 0 0% 0%;
  --destructive: 0 70% 50%;
  --destructive-foreground: 0 0% 100%;
  --border: 0 0% 15%;
  --input: 0 0% 10%;
  --ring: 174 100% 45%;
  --radius: 0.5rem;
  --cyan: 174 100% 45%;
  --cyan-light: 174 100% 55%;
  --cyan-dark: 174 100% 35%;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* Layout */
.min-h-screen { min-height: 100vh; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Flex & Grid */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .md\:flex-row { flex-direction: row; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Spacing */
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.-mr-2 { margin-right: -0.5rem; }
.-top-3 { top: -0.75rem; }
.-left-3 { left: -0.75rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-16 { padding-top: 4rem; }
.pb-8 { padding-bottom: 2rem; }

/* Sizing */
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-36 { width: 9rem; }
.w-full { width: 100%; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-0\.5 { height: 0.125rem; }
.max-w-sm { max-width: 24rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-full { max-width: 100%; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }
.top-16 { top: 4rem; }
.-right-3 { right: -0.75rem; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
@media (min-width: 640px) {
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:text-2xl { font-size: 1.5rem; }
  .sm\:text-3xl { font-size: 1.875rem; }
}
@media (min-width: 768px) {
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .lg\:text-5xl { font-size: 3rem; }
}

.font-sans { font-family: 'Inter', sans-serif; }
.font-display { font-family: 'Montserrat', sans-serif; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.whitespace-nowrap { white-space: nowrap; }

/* Colors */
.bg-background { background-color: hsl(var(--background)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-red-500 { background-color: #ef4444; }
.bg-yellow-500 { background-color: #eab308; }
.text-yellow-500 { color: #eab308; }
.border-border { border-color: hsl(var(--border)); }
.border-border\/30 { border-color: hsl(var(--border) / 0.3); }

/* Borders & Radius */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-bl-xl { border-bottom-left-radius: 0.75rem; }
.rounded-tr-xl { border-top-right-radius: 0.75rem; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

/* Effects */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.blur-3xl { filter: blur(64px); }
.scale-75 { transform: scale(0.75); }

/* Visibility */
.hidden { display: none; }
.col-span-2 { grid-column: span 2; }
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:col-span-1 { grid-column: span 1; }
  .md\:ml-16 { margin-left: 4rem; }
  .md\:ml-60 { margin-left: 15rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:w-10 { width: 2.5rem; }
  .md\:h-10 { height: 2.5rem; }
  .md\:w-6 { width: 1.5rem; }
  .md\:h-6 { height: 1.5rem; }
  .md\:text-sm { font-size: 0.875rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Custom Components */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
  transition: all 0.2s;
}
.btn-primary:hover {
  background-color: hsl(174 100% 50%);
  box-shadow: 0 0 20px hsl(174 100% 45% / 0.4);
  transform: scale(1.02);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  background: transparent;
  border: 1px solid hsl(174 100% 45%);
  color: #fff;
  transition: all 0.2s;
}
.btn-outline:hover {
  background-color: hsl(174 100% 45% / 0.1);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0 0% 70%);
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.sidebar-item:hover {
  background-color: hsl(0 0% 12%);
  color: #fff;
}
.sidebar-item.active {
  color: hsl(174 100% 45%);
}

.payment-bar {
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  background-color: hsl(0 0% 10%);
}

/* Card styles */
.card-dark {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.card-highlight {
  background-color: hsl(0 0% 5%);
  border: 2px solid hsl(174 100% 45%);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

/* Section Heading */
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(174 100% 45%);
  scroll-margin-top: 5rem;
}
@media (min-width: 768px) {
  .section-heading { font-size: 1.875rem; }
}

/* Table of Contents */
.toc-container {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 0 1rem 2rem;
}
.toc-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(174 100% 45%);
}
.toc-list { list-style: none; }
.toc-item {
  padding: 0.25rem 0;
}
.toc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  transition: color 0.2s;
}
.toc-link:hover { color: #fff; }
.toc-arrow { color: hsl(174 100% 45%); }
.toc-nested { margin-left: 1rem; }

/* Hero banner */
.hero-container {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 1rem;
  height: 280px;
}
@media (min-width: 640px) { .hero-container { height: 300px; } }
@media (min-width: 768px) { .hero-container { height: 320px; } }

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  background-color: hsl(174 100% 45% / 0.2);
  border: 1px solid hsl(174 100% 45% / 0.3);
  color: hsl(174 100% 45%);
  width: fit-content;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
@media (min-width: 640px) { .hero-title { font-size: 1.875rem; } }
@media (min-width: 768px) { .hero-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3rem; } }

.hero-title-accent { color: hsl(174 100% 45%); }
.hero-subtitle {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.25rem;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.25rem; } }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.5rem; } }

.hero-cta-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero-cta-container { flex-direction: row; justify-content: center; }
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
  box-shadow: 0 0 20px hsl(174 100% 45% / 0.4);
  transition: all 0.2s;
}
@media (min-width: 640px) { .hero-cta { font-size: 1rem; } }
.hero-cta:hover {
  transform: scale(1.05);
  background-color: hsl(174 100% 50%);
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  background-color: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.9);
}
.hero-trust-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(174 100% 45%);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 4rem;
  background-color: hsl(0 0% 0%);
}
.header-inner {
  height: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
.header-logo-text {
  font-weight: 700;
  color: #fff;
}
.header-logo-spade { font-size: 1.5rem; }
.header-logo-sports {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(0 0% 60%);
  font-weight: 500;
  font-size: 1rem;
}
.header-logo-sports-icon { font-size: 1.5rem; opacity: 0.6; }
.lang-wrapper { position: relative; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-search {
  padding: 0.5rem;
  color: hsl(0 0% 60%);
  transition: color 0.2s;
}
.header-search:hover { color: #fff; }

.header-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
.header-lang-flag { font-size: 1.125rem; }
.header-lang-arrow {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(0 0% 60%);
}

.header-btn-login {
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid hsl(174 100% 45%);
  color: hsl(174 100% 45%);
  background: transparent;
  transition: all 0.2s;
}
.header-btn-login:hover {
  background-color: hsl(174 100% 45% / 0.1);
}

.header-btn-signup {
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
  transition: all 0.2s;
}
.header-btn-signup:hover {
  background-color: hsl(174 100% 50%);
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 4rem;
  bottom: 0;
  z-index: 40;
  width: 15rem;
  background-color: hsl(0 0% 0%);
  transition: width 0.3s;
  display: none;
}
@media (min-width: 768px) {
  .sidebar { display: block; }
}
.sidebar.collapsed { width: 4rem; }

.sidebar-toggle {
  position: absolute;
  right: -0.75rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(0 0% 10%);
  border: 1px solid hsl(0 0% 20%);
  transition: all 0.2s;
}
.sidebar-toggle:hover {
  background-color: hsl(0 0% 15%);
}
.sidebar-toggle svg {
  width: 1rem;
  height: 1rem;
  color: #fff;
}

.sidebar-nav {
  height: 100%;
  overflow-y: auto;
  padding: 1rem 0.5rem;
}
.sidebar-divider {
  margin: 0.75rem 0.5rem;
  border-top: 1px solid hsl(0 0% 15%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #fff;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 60;
  background-color: hsl(0 0% 10%);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .mobile-menu-toggle { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: hsl(0 0% 0%);
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid hsl(0 0% 15%);
  flex-shrink: 0;
}
.mobile-menu-logo {
  display: block;
}
.mobile-menu-logo-img {
  height: 2.5rem;
  width: auto;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: hsl(0 0% 10%);
  color: #fff;
  transition: background-color 0.2s;
}
.mobile-menu-close:hover {
  background-color: hsl(0 0% 15%);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  flex: 1;
}
.mobile-menu-cta {
  padding: 1rem;
  border-top: 1px solid hsl(0 0% 15%);
  flex-shrink: 0;
}
.mobile-menu-cta .btn-primary {
  width: 100%;
}
@media (min-width: 768px) {
  .mobile-menu { display: none; }
}
.main-content {
  padding-top: 4rem;
  min-height: 100vh;
  transition: margin-left 0.3s;
}
@media (min-width: 768px) {
  .main-content { margin-left: 4rem; }
  .main-content.sidebar-expanded { margin-left: 15rem; }
}

/* Footer */
.footer {
  background-color: hsl(0 0% 0%);
}
.footer-accordion {
  border-top: 1px solid hsl(0 0% 15%);
  border-bottom: 1px solid hsl(0 0% 15%);
  padding: 1rem;
}
.footer-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  color: #fff;
  font-size: 0.875rem;
}
.footer-accordion-arrow { color: hsl(0 0% 60%); }

.footer-main {
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .footer-main { padding: 3rem 2rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}

.footer-logo-section { grid-column: span 2; }
@media (min-width: 768px) {
  .footer-logo-section { grid-column: span 1; }
}

.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo-turbo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, #9333ea, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo-wins {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copyright {
  color: hsl(0 0% 60%);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.footer-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid hsl(0 0% 15%);
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-social-icon {
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}
.footer-social-icon:hover { opacity: 0.8; }

.footer-column-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-column-title-casino { color: hsl(174 100% 45%); }
.footer-column-title-sports { color: hsl(174 100% 45%); }
.footer-column-title-legal { color: hsl(0 70% 50%); }
.footer-column-title-about { color: hsl(200 100% 50%); }

.footer-list { list-style: none; }
.footer-list li { margin-bottom: 0.5rem; }
.footer-link {
  color: hsl(0 0% 60%);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }

.footer-external-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(0 0% 15% / 0.3);
}
.footer-external-title {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
  margin-bottom: 0.5rem;
}
.footer-external-link {
  display: block;
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.footer-external-link:hover { color: #fff; }

.footer-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(0 0% 15%);
  text-align: center;
}
.footer-contact-text {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
}
.footer-contact-link { transition: color 0.2s; }
.footer-contact-link:hover { color: #fff; }

.footer-gradient {
  height: 0.125rem;
  background: linear-gradient(90deg, #9333ea, #ec4899, #06b6d4);
}

.footer-payments {
  padding: 1.5rem 1rem;
}
.footer-payments-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-payments-row { gap: 2rem; }
}
.footer-payment-visa {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}
@media (min-width: 768px) {
  .footer-payment-visa { font-size: 1.25rem; }
}
.footer-payment-mc {
  display: flex;
  align-items: center;
}
.footer-payment-mc-red {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background-color: #ef4444;
  margin-right: -0.5rem;
}
.footer-payment-mc-yellow {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background-color: #eab308;
}
@media (min-width: 768px) {
  .footer-payment-mc-red,
  .footer-payment-mc-yellow {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.footer-payment-text {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .footer-payment-text { font-size: 1.125rem; }
}
.footer-payment-bitcoin {
  font-size: 1.25rem;
  color: #eab308;
}
@media (min-width: 768px) {
  .footer-payment-bitcoin { font-size: 1.5rem; }
}

.footer-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer-badge-18 {
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
}
@media (min-width: 768px) {
  .footer-badge-18 {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
  }
}
.footer-badge-responsible {
  padding: 0.25rem 0.5rem;
  border: 1px solid #fff;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: #fff;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
  text-align: center;
  margin-top: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-to-top:hover {
  transform: scale(1.1) translateY(0);
}
.scroll-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Trust badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0 1rem 1.5rem;
}
@media (min-width: 768px) {
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
}
.trust-badge {
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
}
.trust-badge-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.5rem;
  color: hsl(174 100% 45%);
}
.trust-badge-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.trust-badge-sublabel {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
}

/* Affiliate disclaimer */
.affiliate-disclaimer {
  margin: 0 1rem 1.5rem;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: hsl(0 0% 8%);
  border: 1px solid hsl(0 0% 15%);
}
.affiliate-disclaimer-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: hsl(174 100% 45%);
}
.affiliate-disclaimer-text {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
  line-height: 1.625;
}

/* Games sections */
.game-section-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.3s;
}
.game-section-image:hover {
  opacity: 0.9;
  transform: scale(1.02) translateY(-5px);
}

/* Rating section */
.rating-card {
  background-color: hsl(0 0% 5%);
  border: 2px solid hsl(174 100% 45%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.rating-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .rating-content {
    flex-direction: row;
    align-items: center;
  }
}
.rating-score {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
  transition: transform 0.2s;
}
.rating-score:hover {
  transform: scale(1.1) rotate(5deg);
}
.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.rating-star {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  color: hsl(174 100% 45%);
}
.rating-count {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
  margin-top: 0.25rem;
}
.rating-quote {
  flex: 1;
}
.rating-quote-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  color: hsl(174 100% 45% / 0.5);
}
.rating-quote-text {
  font-size: 1.125rem;
  font-style: italic;
  color: hsl(0 0% 60%);
  margin-bottom: 0.5rem;
}
.rating-quote-author {
  font-size: 0.875rem;
  color: hsl(174 100% 45%);
}

/* Pros/Cons block */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pros-cons-grid { grid-template-columns: repeat(2, 1fr); }
}
.pros-card, .cons-card {
  background-color: hsl(0 0% 5%);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.pros-card { border: 1px solid hsl(145 80% 50% / 0.3); }
.cons-card { border: 1px solid hsl(45 100% 50% / 0.3); }
.pros-title, .cons-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pros-title { color: hsl(145 80% 50%); }
.cons-title { color: hsl(45 100% 50%); }
.pros-list, .cons-list { list-style: none; }
.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  margin-bottom: 0.5rem;
}
.pros-icon { color: hsl(145 80% 50%); flex-shrink: 0; }
.cons-icon { color: hsl(45 100% 50%); flex-shrink: 0; }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.stat-icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: hsl(174 100% 45% / 0.2);
}
.stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(174 100% 45%);
}
.stat-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}
.stat-desc {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
}

/* Tags */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background-color: hsl(0 0% 10%);
  color: hsl(0 0% 60%);
  cursor: default;
  transition: all 0.2s;
}
.tag:hover {
  background-color: hsl(174 100% 45% / 0.2);
  color: hsl(174 100% 45%);
}

/* FAQ Section */
.faq-container {
  max-width: 64rem;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
.faq-card {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.faq-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.faq-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: hsl(174 100% 45%);
}
.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(174 100% 45%);
}
.faq-paragraphs { margin-bottom: 1.5rem; }
.faq-paragraph {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.faq-checklist-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.faq-checklist-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(174 100% 45%);
}
.faq-checklist { list-style: none; }
.faq-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  margin-bottom: 0.5rem;
}
.faq-check-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: hsl(145 80% 50%);
}

/* Bonus cards */
.bonus-card {
  position: relative;
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.bonus-card.highlight {
  border: 2px solid hsl(174 100% 45%);
}
.bonus-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-bottom-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.bonus-badge-highlight {
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
}
.bonus-badge-default {
  background-color: hsl(0 0% 15%);
  color: hsl(174 100% 45%);
}
.bonus-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bonus-icon-wrapper-highlight {
  background-color: hsl(174 100% 45%);
}
.bonus-icon-wrapper-default {
  background-color: hsl(0 0% 12%);
}
.bonus-icon {
  width: 1.75rem;
  height: 1.75rem;
}
.bonus-icon-highlight { color: hsl(0 0% 0%); }
.bonus-icon-default { color: hsl(174 100% 45%); }
.bonus-amount {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: hsl(174 100% 45%);
}
.bonus-desc {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
}
.bonus-features { list-style: none; margin-bottom: 1rem; }
.bonus-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  margin-bottom: 0.5rem;
}
.bonus-check-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: hsl(145 80% 50%);
}
.bonus-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
}
.bonus-btn-highlight {
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
  border: none;
}
.bonus-btn-highlight:hover {
  background-color: hsl(174 100% 50%);
}
.bonus-btn-default {
  background: transparent;
  color: hsl(174 100% 45%);
  border: 1px solid hsl(174 100% 45%);
}
.bonus-btn-default:hover {
  background-color: hsl(174 100% 45% / 0.1);
}

/* Reviews */
.review-card {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: linear-gradient(135deg, hsl(174 100% 45%), hsl(174 100% 55%));
}
.review-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
}
.review-stars {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.review-star {
  width: 0.75rem;
  height: 0.75rem;
  fill: currentColor;
  color: hsl(174 100% 45%);
}
.review-quote-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(0 0% 60% / 0.3);
}
.review-text {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  line-height: 1.625;
  margin-bottom: 0.75rem;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
}
.review-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.review-date-icon {
  width: 0.75rem;
  height: 0.75rem;
}
.review-verified {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(145 80% 50%);
}
.review-verified-icon {
  width: 0.75rem;
  height: 0.75rem;
}

/* App page */
.app-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin: 1rem;
}
@media (min-width: 1024px) {
  .app-hero { grid-template-columns: repeat(2, 1fr); }
}
.app-mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.app-mockup-glow {
  position: absolute;
  inset: 0;
  filter: blur(64px);
  border-radius: 9999px;
  transform: scale(0.75);
  background-color: hsl(174 100% 45% / 0.3);
}
.app-mockup-image {
  position: relative;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(-5px); }
  50% { transform: translateY(5px); }
}
.app-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.app-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: hsl(0 0% 8%);
}
.app-feature-icon-wrapper {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(174 100% 45% / 0.2);
}
.app-feature-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(174 100% 45%);
}
.app-feature-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

/* Register page */
.register-form-container {
  background-color: hsl(0 0% 5%);
  border: 2px solid hsl(174 100% 45%);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.register-bonus-card {
  background-color: hsl(174 100% 45% / 0.1);
  border: 1px solid hsl(174 100% 45% / 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.register-bonus-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: hsl(174 100% 45%);
}
.register-bonus-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.register-bonus-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: hsl(174 100% 45%);
}
.register-bonus-list { list-style: none; }
.register-bonus-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  margin-bottom: 0.5rem;
}
.register-check-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(145 80% 50%);
}

.register-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .register-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .register-steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.register-step {
  position: relative;
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.register-step-number {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
}
.register-step-content { padding-top: 0.5rem; }
.register-step-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background-color: hsl(0 0% 12%);
}
.register-step-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(174 100% 45%);
}
.register-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.register-step-desc {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  margin-bottom: 0.5rem;
}
.register-step-detail {
  font-size: 0.75rem;
  color: hsl(0 0% 60% / 0.7);
}

/* Form styles */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: hsl(0 0% 10%);
  border: 1px solid hsl(0 0% 20%);
  color: #fff;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: hsl(174 100% 45%);
}
.form-input::placeholder { color: hsl(0 0% 50%); }
.form-error {
  font-size: 0.75rem;
  color: hsl(0 70% 50%);
  margin-top: 0.25rem;
}
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.form-checkbox {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: hsl(174 100% 45%);
}
.form-checkbox-label {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
}
.form-submit {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
  border: none;
  transition: all 0.2s;
}
.form-submit:hover {
  background-color: hsl(174 100% 50%);
  box-shadow: 0 0 20px hsl(174 100% 45% / 0.4);
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: hsl(0 0% 5%);
  border-radius: 0.75rem;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid hsl(0 0% 15%);
}
.comparison-table th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(174 100% 45%);
  background-color: hsl(0 0% 8%);
}
.comparison-table td {
  font-size: 0.875rem;
  color: hsl(0 0% 80%);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-highlight {
  background-color: hsl(174 100% 45% / 0.1);
  color: hsl(174 100% 45%) !important;
  font-weight: 600;
}

/* Mobile menu */
.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  color: #fff;
}
@media (min-width: 768px) {
  .mobile-menu-toggle { display: none; }
}
.mobile-menu {
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background-color: hsl(0 0% 0%);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-nav {
  padding: 1rem;
  overflow-y: auto;
  height: 100%;
}

/* Utility: hide on mobile, show on desktop */
.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile { display: block; }
}
.show-mobile { display: block; }
@media (min-width: 768px) {
  .show-mobile { display: none; }
}

/* Language dropdown */
.lang-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  width: 9rem;
  background-color: hsl(220 15% 10%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: none;
}
.lang-dropdown.open { display: block; }
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  width: 100%;
  transition: background-color 0.2s;
}
.lang-dropdown-item:hover { background-color: hsl(0 0% 15%); }
.lang-dropdown-item.active {
  background-color: hsl(0 0% 15%);
  color: hsl(174 100% 45%);
}
.lang-dropdown-flag { font-size: 1.125rem; }

/* Payment bar */
.payment-bar-container {
  background-color: hsl(0 0% 10%);
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  margin: 1.5rem 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .payment-bar-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.payment-bar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.payment-methods {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.payment-visa {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.payment-mc {
  display: flex;
  align-items: center;
}
.payment-mc-red {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: #ef4444;
  margin-right: -0.5rem;
}
.payment-mc-yellow {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: #eab308;
}
.payment-apple {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
}
.payment-apple-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.payment-gpay {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
}
.payment-gpay-g { font-weight: 700; }
.payment-bitcoin {
  width: 1.5rem;
  height: 1.5rem;
  color: #eab308;
}

/* Author block */
.author-block {
  margin: 0 1rem 2rem;
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .author-block { flex-direction: row; align-items: flex-start; }
}
.author-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  border: 2px solid hsl(174 100% 45%);
  flex-shrink: 0;
}
.author-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.author-role {
  font-size: 0.875rem;
  color: hsl(174 100% 45%);
  margin-bottom: 0.5rem;
}
.author-bio {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  line-height: 1.625;
}
.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.author-credential {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
}
.author-credential-icon {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(145 80% 50%);
}

/* Responsible gambling */
.responsible-gambling {
  margin: 0 1rem 2rem;
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(45 100% 50% / 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.responsible-gambling-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(45 100% 50%);
  margin-bottom: 1rem;
}
.responsible-gambling-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.responsible-gambling-text {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  line-height: 1.625;
  margin-bottom: 1rem;
}
.responsible-gambling-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.responsible-gambling-link {
  font-size: 0.875rem;
  color: hsl(174 100% 45%);
  text-decoration: underline;
}

/* Changelog */
.changelog-list { list-style: none; }
.changelog-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid hsl(0 0% 15%);
}
.changelog-item:last-child { border-bottom: none; }
.changelog-date {
  width: 6rem;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(174 100% 45%);
}
.changelog-content { flex: 1; }
.changelog-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.changelog-desc {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
}
.changelog-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
.changelog-badge-new {
  background-color: hsl(145 80% 50% / 0.2);
  color: hsl(145 80% 50%);
}
.changelog-badge-update {
  background-color: hsl(200 100% 50% / 0.2);
  color: hsl(200 100% 50%);
}
.changelog-badge-fix {
  background-color: hsl(45 100% 50% / 0.2);
  color: hsl(45 100% 50%);
}

/* SVG Icons (inline via CSS) */
.icon-check::before { content: "✓"; }
.icon-x::before { content: "✕"; }
.icon-arrow-up::before { content: "↑"; }
.icon-arrow-right::before { content: "→"; }
.icon-star::before { content: "★"; }

/* ============================================ */
/* ADDITIONAL STYLES FOR COMPLETE REACT PARITY */
/* ============================================ */

/* Game Section Wrapper */
.game-section-wrapper {
  cursor: pointer;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.game-section-wrapper:hover {
  transform: scale(1.02) translateY(-5px);
}
.game-section-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

/* TOC Compact Style */
.toc-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin: 0 1rem 1.5rem;
}
.toc-label {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
  margin-right: 0.5rem;
}
.toc-pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(0 0% 10%);
  color: hsl(0 0% 70%);
  transition: all 0.2s;
}
.toc-pill:hover {
  background-color: hsl(174 100% 45% / 0.2);
  color: hsl(174 100% 45%);
}

/* Affiliate Disclaimer */
.affiliate-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 1rem;
  padding: 1rem;
  background-color: hsl(200 100% 50% / 0.05);
  border: 1px solid hsl(200 100% 50% / 0.2);
  border-radius: 0.5rem;
}
.affiliate-disclaimer-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: hsl(200 100% 50%);
}
.affiliate-disclaimer-text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: hsl(0 0% 60%);
}

/* Trust Badges Grid */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0 1rem 1.5rem;
}
@media (min-width: 768px) {
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
}
.trust-badge {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}
.trust-badge-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.5rem;
  color: hsl(174 100% 45%);
}
.trust-badge-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
}
.trust-badge-sublabel {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
}

/* Author Block Enhanced */
.author-block {
  display: flex;
  gap: 1rem;
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 0 1rem 2rem;
}
.author-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: hsl(0 0% 15%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: hsl(174 100% 45%);
}
.author-info { flex: 1; }
.author-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .author-header { flex-direction: row; justify-content: space-between; }
}
.author-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
}
.author-role {
  font-size: 0.875rem;
  color: hsl(174 100% 45%);
}
.author-exp {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
}
.author-bio {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
}
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.author-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
}
.author-meta-updated { color: hsl(174 100% 45%); }
.author-meta-verified { color: hsl(145 80% 50%); }
.author-methodology {
  font-size: 0.75rem;
  color: hsl(0 0% 50%);
  font-style: italic;
}

/* Content Cards */
.content-card {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.content-card-highlight {
  border-color: hsl(174 100% 45%);
  background: linear-gradient(135deg, hsl(174 100% 45% / 0.1) 0%, transparent 100%);
}
.content-card-verdict {
  border-color: hsl(145 80% 50%);
  background: linear-gradient(135deg, hsl(145 80% 50% / 0.1) 0%, transparent 100%);
}
.content-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.content-card-title-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.content-card-title-icon svg {
  color: hsl(174 100% 45%);
}
.content-paragraph {
  font-size: 0.9375rem;
  color: hsl(0 0% 70%);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.content-paragraph:last-child { margin-bottom: 0; }
.content-italic { font-style: italic; color: hsl(0 0% 60%); }

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 1rem 0;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid hsl(0 0% 15%);
}
.comparison-table th {
  background-color: hsl(0 0% 8%);
  font-weight: 600;
  color: #fff;
}
.comparison-table td { color: hsl(0 0% 70%); }
.comparison-table .comparison-turbo {
  background-color: hsl(174 100% 45% / 0.1);
  color: hsl(174 100% 45%);
  font-weight: 600;
}
.comparison-table .comparison-good { color: hsl(145 80% 50%); }

/* Tips List */
.tips-list { display: flex; flex-direction: column; gap: 1rem; }
.tip-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: hsl(0 0% 8%);
  border-radius: 0.75rem;
}
.tip-number {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: hsl(174 100% 45%);
  color: hsl(0 0% 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.tip-content { flex: 1; }
.tip-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.tip-desc {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
}

/* Sources Grid */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .sources-grid { grid-template-columns: 1fr; }
}
.source-item {
  background-color: hsl(0 0% 8%);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}
.source-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.source-rating {
  font-size: 0.75rem;
  color: hsl(174 100% 45%);
}

/* Mini FAQ */
.mini-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .mini-faq { grid-template-columns: 1fr; }
}
.mini-faq-item {
  background-color: hsl(0 0% 8%);
  border-radius: 0.5rem;
  padding: 1rem;
}
.mini-faq-q {
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(174 100% 45%);
  margin-bottom: 0.5rem;
}
.mini-faq-a {
  font-size: 0.8125rem;
  color: hsl(0 0% 60%);
}

/* Verdict */
.verdict-date {
  font-size: 0.875rem;
  font-weight: 400;
  color: hsl(0 0% 60%);
}

/* LSI Cloud */
.lsi-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.lsi-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(0 0% 10%);
  color: hsl(0 0% 60%);
  transition: all 0.2s;
}
.lsi-tag:hover {
  background-color: hsl(174 100% 45% / 0.2);
  color: hsl(174 100% 45%);
}

/* Rating Section */
.rating-card {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .rating-card { flex-direction: row; align-items: center; }
}
.rating-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rating-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: hsl(174 100% 45%);
  transition: transform 0.3s;
}
.rating-stars {
  display: flex;
  gap: 0.125rem;
  color: hsl(174 100% 45%);
}
.rating-count {
  font-size: 0.75rem;
  color: hsl(0 0% 60%);
}
.rating-quote { flex: 1; }
.rating-quote-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(0 0% 30%);
  margin-bottom: 0.5rem;
}
.rating-quote-text {
  font-size: 0.9375rem;
  color: hsl(0 0% 70%);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.rating-quote-author {
  font-size: 0.75rem;
  color: hsl(0 0% 50%);
}

/* Pros/Cons Grid */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pros-cons-grid { grid-template-columns: repeat(2, 1fr); }
}
.pros-card, .cons-card {
  background-color: hsl(0 0% 5%);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.pros-card { border: 1px solid hsl(145 80% 50% / 0.3); }
.cons-card { border: 1px solid hsl(0 70% 50% / 0.3); }
.pros-header, .cons-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pros-header h3 { color: hsl(145 80% 50%); font-weight: 700; }
.cons-header h3 { color: hsl(0 70% 50%); font-weight: 700; }
.pros-header svg { color: hsl(145 80% 50%); }
.cons-header svg { color: hsl(0 70% 50%); }
.pros-list, .cons-list { list-style: none; }
.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 70%);
  margin-bottom: 0.75rem;
}
.pros-list li svg { color: hsl(145 80% 50%); flex-shrink: 0; margin-top: 0.125rem; }
.cons-list li svg { color: hsl(0 70% 50%); flex-shrink: 0; margin-top: 0.125rem; }

/* Changelog Enhanced */
.changelog-container {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.changelog-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.changelog-list { list-style: none; }
.changelog-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(0 0% 10%);
}
.changelog-item:last-child { border-bottom: none; }
.changelog-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.changelog-icon-payout { background-color: hsl(174 100% 45% / 0.2); color: hsl(174 100% 45%); }
.changelog-icon-bonus { background-color: hsl(45 100% 50% / 0.2); color: hsl(45 100% 50%); }
.changelog-icon-games { background-color: hsl(280 100% 60% / 0.2); color: hsl(280 100% 60%); }
.changelog-icon-withdraw { background-color: hsl(145 80% 50% / 0.2); color: hsl(145 80% 50%); }
.changelog-icon-verification { background-color: hsl(200 100% 50% / 0.2); color: hsl(200 100% 50%); }
.changelog-content { flex: 1; }
.changelog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.changelog-badge {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.changelog-badge-payout { background-color: hsl(174 100% 45% / 0.2); color: hsl(174 100% 45%); }
.changelog-badge-bonus { background-color: hsl(45 100% 50% / 0.2); color: hsl(45 100% 50%); }
.changelog-badge-games { background-color: hsl(280 100% 60% / 0.2); color: hsl(280 100% 60%); }
.changelog-badge-withdraw { background-color: hsl(145 80% 50% / 0.2); color: hsl(145 80% 50%); }
.changelog-badge-verification { background-color: hsl(200 100% 50% / 0.2); color: hsl(200 100% 50%); }
.changelog-date {
  font-size: 0.75rem;
  color: hsl(0 0% 50%);
}
.changelog-text {
  font-size: 0.875rem;
  color: hsl(0 0% 70%);
}

/* Stats Container */
.stats-container {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 15%);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: hsl(0 0% 8%);
  border-radius: 0.75rem;
}
.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: hsl(174 100% 45% / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(174 100% 45%);
  flex-shrink: 0;
}
.stats-footer {
  font-size: 0.75rem;
  color: hsl(0 0% 50%);
  text-align: center;
  margin-top: 1rem;
}

/* Exhaustive FAQ */
.exhaustive-faq {
  background-color: hsl(0 0% 5%);
  border: 2px solid hsl(174 100% 45%);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.exhaustive-faq-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.exhaustive-faq-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: hsl(174 100% 45%);
}
.exhaustive-faq-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(174 100% 45%);
}
.exhaustive-faq-content {
  margin-bottom: 1.5rem;
}
.exhaustive-faq-content p {
  font-size: 0.9375rem;
  color: hsl(0 0% 70%);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.exhaustive-faq-checklist {
  background-color: hsl(0 0% 8%);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.checklist-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.checklist-items { list-style: none; }
.checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 70%);
  margin-bottom: 0.5rem;
}
.checklist-items li svg {
  color: hsl(145 80% 50%);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Responsible Gambling Enhanced */
.responsible-gambling {
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(45 100% 50% / 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.responsible-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.responsible-header svg { color: hsl(45 100% 50%); }
.responsible-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(45 100% 50%);
}
.responsible-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: hsl(0 70% 50% / 0.2);
  border: 1px solid hsl(0 70% 50%);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(0 70% 50%);
  margin-bottom: 1rem;
}
.responsible-warning {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(45 100% 50%);
  margin-bottom: 1rem;
}
.responsible-tips { list-style: none; margin-bottom: 1.5rem; }
.responsible-tips li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 70%);
  margin-bottom: 0.5rem;
}
.responsible-tips li svg { color: hsl(45 100% 50%); }
.responsible-help {
  background-color: hsl(0 0% 8%);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.responsible-help-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
.responsible-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.responsible-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: hsl(174 100% 45%);
  text-decoration: underline;
}
.responsible-phone {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.responsible-tools {
  font-size: 0.75rem;
  color: hsl(0 0% 50%);
}

/* Footer Enhanced */
.footer-content { padding: 2rem 1rem; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(5, 1fr); }
}
.footer-brand { grid-column: span 2; }
@media (min-width: 768px) {
  .footer-brand { grid-column: span 1; }
}
.footer-logo {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.footer-logo-turbo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, #9333ea, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-logo-wins {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-column { }
.footer-column-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a, .footer-links button {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-links-legal li { color: hsl(0 0% 50%); font-size: 0.875rem; cursor: default; }
.footer-external { margin-top: 1rem; }
.footer-external-label {
  font-size: 0.75rem;
  color: hsl(0 0% 50%);
  margin-bottom: 0.5rem;
}
.footer-external-link {
  display: inline-block;
  font-size: 0.75rem;
  color: hsl(174 100% 45%);
  margin-right: 0.75rem;
}
.footer-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(0 0% 15%);
  text-align: center;
}
.footer-contact p {
  font-size: 0.875rem;
  color: hsl(0 0% 60%);
}
.footer-email { color: hsl(174 100% 45%); }
.footer-gradient {
  height: 2px;
  background: linear-gradient(90deg, hsl(280 100% 60%), hsl(174 100% 45%), hsl(145 80% 50%));
}
.footer-payments {
  padding: 1.5rem 1rem;
  text-align: center;
}
.footer-payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.payment-visa-footer { font-weight: 700; font-size: 1.125rem; color: #fff; }
.payment-mc-footer { display: flex; }
.payment-mc-red-footer { width: 1.25rem; height: 1.25rem; border-radius: 9999px; background-color: #ef4444; margin-right: -0.375rem; }
.payment-mc-yellow-footer { width: 1.25rem; height: 1.25rem; border-radius: 9999px; background-color: #eab308; }
.payment-apple-footer, .payment-gpay-footer { font-size: 0.875rem; color: #fff; }
.payment-btc-footer { font-size: 1.25rem; color: #eab308; }
.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-age-badge {
  padding: 0.25rem 0.75rem;
  background-color: hsl(0 70% 50%);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.footer-responsible-badge {
  padding: 0.25rem 0.75rem;
  border: 1px solid hsl(45 100% 50%);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(45 100% 50%);
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: hsl(0 0% 50%);
  max-width: 48rem;
  margin: 0 auto;
}

/* Sidebar Logo */
.sidebar-logo {
  display: block;
  padding: 1rem;
  margin-bottom: 0.5rem;
}
.sidebar-logo-img {
  width: 100%;
  height: auto;
  max-width: 10rem;
}

/* Button Large */
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Animation */
.hero-image-animated {
  animation: heroZoom 20s ease-in-out infinite;
}
@keyframes heroZoom {
  0%, 100% { transform: scale(1) translateX(0); }
  50% { transform: scale(1.05) translateX(10px); }
}
.hero-speed-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,204,0.1) 50%, transparent 100%);
  animation: speedLines 3s linear infinite;
  pointer-events: none;
}
@keyframes speedLines {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Scroll margin for anchors */
.scroll-mt-20 { scroll-margin-top: 5rem; }

/* Space utilities */
.space-y-8 > * + * { margin-top: 2rem; }

/* ==========================================
   Framer Motion Style Animations
   ========================================== */

/* Base animation properties */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Up */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}
[data-animate="fade-up"].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Down */
[data-animate="fade-down"] {
  opacity: 0;
  transform: translateY(-30px);
}
[data-animate="fade-down"].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Left */
[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(-30px);
}
[data-animate="fade-left"].animated {
  opacity: 1;
  transform: translateX(0);
}

/* Fade In Right */
[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(30px);
}
[data-animate="fade-right"].animated {
  opacity: 1;
  transform: translateX(0);
}

/* Scale In */
[data-animate="scale"] {
  opacity: 0;
  transform: scale(0.9);
}
[data-animate="scale"].animated {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
[data-animate-stagger] > *:nth-child(1) { transition-delay: 0ms; }
[data-animate-stagger] > *:nth-child(2) { transition-delay: 100ms; }
[data-animate-stagger] > *:nth-child(3) { transition-delay: 200ms; }
[data-animate-stagger] > *:nth-child(4) { transition-delay: 300ms; }
[data-animate-stagger] > *:nth-child(5) { transition-delay: 400ms; }
[data-animate-stagger] > *:nth-child(6) { transition-delay: 500ms; }
[data-animate-stagger] > *:nth-child(7) { transition-delay: 600ms; }
[data-animate-stagger] > *:nth-child(8) { transition-delay: 700ms; }

/* Hover Animations */
.hover-scale {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-scale:hover {
  transform: scale(1.05);
}
.hover-scale:active {
  transform: scale(0.95);
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px -10px hsl(174 100% 45% / 0.3);
}

.hover-glow {
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-glow:hover {
  box-shadow: 0 0 30px hsl(174 100% 45% / 0.4);
}

/* Card hover effects */
.card-animated {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}
.card-animated:hover {
  transform: translateY(-3px);
  border-color: hsl(174 100% 45% / 0.5);
  box-shadow: 0 10px 30px -10px hsl(174 100% 45% / 0.2);
}

/* Button tap effect */
.btn-animated {
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.15s ease;
}
.btn-animated:hover {
  transform: scale(1.02);
}
.btn-animated:active {
  transform: scale(0.98);
}

/* Image hover zoom */
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.img-zoom:hover img {
  transform: scale(1.08);
}

/* Pulse animation for CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 hsl(174 100% 45% / 0.4); }
  50% { box-shadow: 0 0 20px 5px hsl(174 100% 45% / 0.2); }
}
.pulse-glow {
  animation: pulse-glow 2s infinite;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Shimmer effect for loading states */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, 
    hsl(0 0% 10%) 0%, 
    hsl(0 0% 15%) 50%, 
    hsl(0 0% 10%) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Rating score bounce */
@keyframes bounce-in {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.animate-bounce-in {
  animation: bounce-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Star rating fill */
@keyframes star-fill {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.star-animate {
  animation: star-fill 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
.star-animate:nth-child(1) { animation-delay: 0ms; }
.star-animate:nth-child(2) { animation-delay: 100ms; }
.star-animate:nth-child(3) { animation-delay: 200ms; }
.star-animate:nth-child(4) { animation-delay: 300ms; }
.star-animate:nth-child(5) { animation-delay: 400ms; }

/* Badge pop-in */
@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.pop-in {
  animation: pop-in 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Slide in from sides */
@keyframes slide-in-left {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes slide-in-right {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.slide-in-left { animation: slide-in-left 0.5s ease-out forwards; }
.slide-in-right { animation: slide-in-right 0.5s ease-out forwards; }

/* Progress bar animation */
@keyframes progress-fill {
  0% { width: 0; }
}
.progress-animated {
  animation: progress-fill 1s ease-out forwards;
}

/* Accordion animation */
.accordion-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
.accordion-content.open {
  opacity: 1;
}

/* Tooltip animation */
.tooltip-animated {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.tooltip-trigger:hover .tooltip-animated {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ========================================
   EXHAUSTIVE FAQ SECTION
   ======================================== */
.exhaustive-faq {
  background-color: hsl(0 0% 5%);
  border: 2px solid hsl(174 100% 45% / 0.3);
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 0 1rem 2rem;
}

.exhaustive-faq-header {
  background-color: hsl(174 100% 45% / 0.1);
  padding: 1.25rem;
}

.exhaustive-faq-question {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.exhaustive-faq-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: hsl(174 100% 45% / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exhaustive-faq-icon svg {
  width: 1rem;
  height: 1rem;
  color: hsl(174 100% 45%);
}

.exhaustive-faq h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .exhaustive-faq h3 {
    font-size: 1rem;
  }
}

.exhaustive-faq-body {
  padding: 1.25rem;
}

.exhaustive-faq-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.exhaustive-faq-paragraphs p {
  color: hsl(0 0% 60%);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.exhaustive-faq-paragraphs p:first-child::first-letter {
  font-size: 1.5em;
  font-weight: 700;
  color: hsl(174 100% 45%);
  float: left;
  margin-right: 0.25rem;
  line-height: 1;
}

.exhaustive-faq-checklist {
  background-color: hsl(145 80% 50% / 0.05);
  border: 1px solid hsl(145 80% 50% / 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.exhaustive-faq-checklist-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.exhaustive-faq-checklist-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(145 80% 50%);
}

.exhaustive-faq-checklist-header h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(145 80% 50%);
  margin: 0;
}

.exhaustive-faq-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exhaustive-faq-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: hsl(0 0% 60%);
}

.exhaustive-faq-checklist li svg {
  width: 1rem;
  height: 1rem;
  color: hsl(145 80% 50%);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   CRITICAL MOBILE FIXES - Added January 2026
   ======================================== */

/* Mobile Menu Logo */
.mobile-menu-logo {
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid hsl(0 0% 15%);
}
.mobile-menu-logo img {
  height: 3rem;
  width: auto;
}

/* Mobile Menu Improvements */
.mobile-menu {
  padding-top: 0;
}
.mobile-menu-nav {
  padding-top: 0;
}

/* Fix mobile menu toggle position - prevent overlap */
.mobile-menu-toggle {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  background-color: hsl(0 0% 5%);
  border: 1px solid hsl(0 0% 20%);
  border-radius: 0.5rem;
  padding: 0.625rem;
}

/* Header adjustments for mobile */
@media (max-width: 767px) {
  .header {
    padding-left: 3.5rem; /* Space for hamburger */
  }
  .header-inner {
    justify-content: flex-end;
  }
  .header-logo {
    display: none; /* Hide text logo on mobile, show in sidebar/mobile menu */
  }
  .header-btn-login,
  .header-btn-signup {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
  .header-actions {
    gap: 0.5rem;
  }
}

/* Game images desktop constraint */
.game-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.game-section-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-section-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px -10px hsl(174 100% 45% / 0.3);
}

/* Desktop image constraints */
@media (min-width: 1024px) {
  .game-section-wrapper {
    max-width: 1000px;
  }
}

/* Mobile page width fix - prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Main content mobile padding */
@media (max-width: 767px) {
  .main-content {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0 !important;
  }
  
  /* Sections mobile padding */
  .mx-4 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  
  /* Hero container mobile */
  .hero-container {
    margin: 0.5rem;
    border-radius: 0.5rem;
    height: 240px;
  }
  
  /* Payment bar mobile */
  .payment-bar {
    padding: 1rem;
    margin: 0 0.75rem;
  }
  
  /* TOC mobile */
  .toc-container {
    margin: 0 0.75rem 1rem;
    padding: 0.75rem;
  }
  .toc-pill {
    padding: 0.375rem 0.625rem;
    font-size: 0.6875rem;
  }
  
  /* Trust badges mobile */
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 0 0.75rem;
  }
  
  /* Rating block mobile */
  .rating-block {
    margin: 0 0.75rem;
    padding: 1rem;
  }
  
  /* Pros/cons mobile */
  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Author block mobile */
  .author-block {
    margin: 0 0.75rem;
    padding: 1rem;
  }
  .author-avatar {
    width: 4rem;
    height: 4rem;
  }
  
  /* Changelog mobile */
  .changelog-section {
    margin: 0 0.75rem;
  }
  
  /* Exhaustive FAQ mobile */
  .exhaustive-faq {
    margin: 0 0.75rem 1.5rem;
  }
  
  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-logo-section {
    grid-column: 1;
  }
}

/* Language dropdown fix */
.lang-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  min-width: 9rem;
  background-color: hsl(0 0% 8%);
  border: 1px solid hsl(0 0% 20%);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: hsl(0 0% 70%);
  text-align: left;
  transition: all 0.15s;
}
.lang-dropdown-item:hover {
  background-color: hsl(0 0% 15%);
  color: #fff;
}
.lang-dropdown-item.active {
  color: hsl(174 100% 45%);
  background-color: hsl(174 100% 45% / 0.1);
}
.lang-dropdown-flag {
  font-size: 1.25rem;
}

/* Additional pages width fix */
.content-section {
  max-width: 100%;
  overflow-x: hidden;
}

/* Comparison table mobile */
@media (max-width: 767px) {
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
  .comparison-table table {
    min-width: 600px;
  }
}

/* App comparison table mobile */
@media (max-width: 767px) {
  .app-comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* Registration form mobile */
@media (max-width: 767px) {
  .register-form-container {
    margin: 0 0.75rem;
    padding: 1rem;
  }
  .security-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
