/* Slotuna Casino - Static CSS */
/* Generated from React/Tailwind project */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== CSS Variables (Design Tokens) ===== */
:root {
  /* Dark professional betting theme */
  --background: hsl(0, 0%, 7%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(0, 0%, 10%);
  --card-foreground: hsl(0, 0%, 98%);
  --popover: hsl(0, 0%, 10%);
  --popover-foreground: hsl(0, 0%, 98%);
  --primary: hsl(142, 76%, 46%);
  --primary-foreground: hsl(0, 0%, 2%);
  --secondary: hsl(0, 0%, 14%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(0, 0%, 64%);
  --accent: hsl(142, 76%, 46%);
  --accent-foreground: hsl(0, 0%, 2%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 98%);
  --border: hsl(0, 0%, 18%);
  --input: hsl(0, 0%, 18%);
  --ring: hsl(142, 76%, 46%);
  --radius: 0.5rem;
  --gold: hsl(45, 93%, 47%);
  --gold-dark: hsl(45, 93%, 37%);
  --gold-light: hsl(45, 93%, 57%);
  --sidebar-background: hsl(0, 0%, 5%);
}

/* ===== Base Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.125rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
}

.text-muted {
  color: var(--muted-foreground);
}

.text-primary {
  color: var(--primary);
}

.text-gold {
  color: var(--gold);
}

.text-gradient-gold {
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-relaxed { line-height: 1.625; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 0.875rem;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
  background-color: hsl(142, 76%, 41%);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
  padding: 0.5rem 0.75rem;
}

.btn-ghost:hover {
  color: var(--foreground);
  background-color: hsla(0, 0%, 100%, 0.05);
}

.btn-sm { padding: 0.5rem 0.75rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsla(0, 0%, 7%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-foreground);
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header-actions { display: flex; }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-link {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background-color: hsla(142, 76%, 46%, 0.1);
  color: var(--primary);
}

.mobile-menu-cta {
  margin-top: 1rem;
}

.mobile-menu-cta .btn {
  width: 100%;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 240px;
  border-radius: 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { min-height: 300px; }
}

.hero-bg {
  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, hsla(0, 0%, 7%, 0.95), hsla(0, 0%, 7%, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-content {
    min-height: 300px;
    padding: 2.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(142, 76%, 46%, 0.2);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  width: fit-content;
  animation: fadeIn 0.5s ease-out;
}

.hero-badge svg {
  width: 12px;
  height: 12px;
}

.hero h1 {
  margin-bottom: 0.75rem;
  animation: fadeIn 0.5s ease-out 0.1s both;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  animation: fadeIn 0.5s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.5s ease-out 0.3s both;
}

.hero-ctas .btn {
  box-shadow: 0 10px 25px -5px hsla(142, 76%, 46%, 0.3);
}

.hero-ctas .btn:hover {
  box-shadow: 0 10px 25px -5px hsla(142, 76%, 46%, 0.5);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: fadeIn 0.5s ease-out 0.4s both;
}

.hero-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(0, 0%, 10%, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  transition: border-color 0.2s;
}

.hero-feature-badge:hover {
  border-color: hsla(142, 76%, 46%, 0.5);
}

.hero-feature-badge svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* ===== Cards ===== */
.card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: hsla(142, 76%, 46%, 0.5);
  box-shadow: 0 0 20px hsla(142, 76%, 46%, 0.15);
}

.card-body {
  padding: 1.5rem;
}

/* Game Card */
.game-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.game-card:hover {
  border-color: hsla(142, 76%, 46%, 0.5);
  box-shadow: 0 0 20px hsla(142, 76%, 46%, 0.15);
}

/* ===== Section Spacing ===== */
.section {
  margin-bottom: 2.5rem;
}

.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 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\:col-span-2 { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

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

/* ===== Width/Height ===== */
.w-full { width: 100%; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== Borders & Radius ===== */
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-l-4 { border-left: 4px solid; }
.border-primary { border-color: var(--primary); }
.border-gold { border-color: var(--gold); }

/* ===== Backgrounds ===== */
.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }
.bg-destructive { background-color: var(--destructive); }

.bg-muted-30 { background-color: hsla(0, 0%, 15%, 0.3); }
.bg-primary-10 { background-color: hsla(142, 76%, 46%, 0.1); }
.bg-primary-20 { background-color: hsla(142, 76%, 46%, 0.2); }

.bg-gradient-primary {
  background: linear-gradient(135deg, hsla(142, 76%, 46%, 0.2), transparent);
}

/* ===== Icons ===== */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 40px; height: 40px; }

.icon-primary { color: var(--primary); }
.icon-gold { color: var(--gold); }
.icon-muted { color: var(--muted-foreground); }

/* ===== Table of Contents ===== */
.toc {
  background-color: hsla(0, 0%, 10%, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.toc-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.toc-list {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .toc-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.toc-link:hover {
  color: var(--primary);
}

/* ===== Changelog / Timeline ===== */
.changelog {
  position: relative;
}

.changelog-line {
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: var(--border);
}

.changelog-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.changelog-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: hsla(142, 76%, 46%, 0.2);
  border: 2px solid var(--primary);
  transition: transform 0.3s;
}

.changelog-item:hover .changelog-dot {
  transform: scale(1.25);
}

.changelog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.changelog-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-family: monospace;
}

.changelog-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.changelog-tag-bonus { background-color: hsla(142, 76%, 46%, 0.2); color: var(--primary); }
.changelog-tag-payments { background-color: hsla(200, 100%, 50%, 0.2); color: hsl(200, 100%, 60%); }
.changelog-tag-games { background-color: hsla(280, 100%, 60%, 0.2); color: hsl(280, 100%, 70%); }
.changelog-tag-verification { background-color: hsla(142, 76%, 46%, 0.2); color: hsl(142, 76%, 56%); }

.changelog-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.changelog-item:hover .changelog-text {
  color: var(--foreground);
}

/* ===== Footer ===== */
.footer {
  background-color: hsl(0, 0%, 5%);
  border-top: 1px solid var(--border);
}

.footer-features {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.footer-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-feature { justify-content: flex-start; }
}

.footer-feature svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.footer-feature span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-main {
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background-color: var(--card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.footer-social-link:hover {
  background-color: var(--primary);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
}

.footer-social-link:hover svg {
  color: var(--primary-foreground);
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.footer-payment {
  background-color: var(--card);
  border-radius: 6px;
  padding: 0.5rem;
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted-foreground);
}

.footer-responsible {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-18plus {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-18plus-badge {
  background-color: var(--destructive);
  color: var(--destructive-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 1rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.3);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  animation: fadeIn 0.3s ease-out;
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  transform: scale(1.1);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ===== Reviews ===== */
.review-card {
  padding: 1.25rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background-color: hsla(142, 76%, 46%, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  fill: var(--primary);
}

/* ===== Pros & Cons ===== */
.pros-cons-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.pros-cons-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pros-icon { color: var(--primary); }
.cons-icon { color: var(--gold); }

/* ===== Tables ===== */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 1rem;
  text-align: left;
}

th {
  background-color: hsla(0, 0%, 15%, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
}

tr {
  border-bottom: 1px solid var(--border);
}

tr:hover {
  background-color: hsla(0, 0%, 15%, 0.2);
}

/* ===== Forms ===== */
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px hsla(142, 76%, 46%, 0.2);
}

.input::placeholder {
  color: var(--muted-foreground);
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  pointer-events: none;
}

.input-icon svg {
  width: 16px;
  height: 16px;
}

.input-group .input {
  padding-left: 2.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  cursor: pointer;
}

.checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

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

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px hsla(142, 76%, 46%, 0.2);
  }
  50% {
    box-shadow: 0 0 40px hsla(142, 76%, 46%, 0.4);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* ===== Hover Effects ===== */
.hover-scale {
  transition: transform 0.2s;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.3s, box-shadow 0.3s;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px hsla(0, 0%, 0%, 0.2);
}

/* ===== Scroll Anchor ===== */
.scroll-anchor {
  scroll-margin-top: 100px;
}

/* ===== Overflow ===== */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* ===== Image ===== */
.img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-rounded {
  border-radius: 0.75rem;
}

.group:hover .group-hover-scale {
  transform: scale(1.05);
}

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

::-webkit-scrollbar-track {
  background: hsl(0, 0%, 5%);
}

::-webkit-scrollbar-thumb {
  background: hsl(0, 0%, 20%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(0, 0%, 30%);
}

/* ===== Utilities ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

.pointer-events-none { pointer-events: none; }

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-through { text-decoration: line-through; }

/* ===== Responsive Visibility ===== */
@media (max-width: 767px) {
  .md\:hidden { display: none; }
}

@media (min-width: 768px) {
  .hidden-md { display: none; }
}

/* ===== Reviews Page - Avatars & Cards ===== */
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), hsl(142, 76%, 36%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-foreground);
  flex-shrink: 0;
}

.review-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: hsla(142, 76%, 46%, 0.5);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  color: var(--gold);
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.review-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Overall Rating Block */
.rating-block {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}

.rating-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rating-stars-large {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.rating-stars-large svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.rating-count {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pros-block, .cons-block {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.pros-block h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cons-block h3 {
  color: var(--destructive);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros-list, .cons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pros-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cons-list li svg {
  width: 16px;
  height: 16px;
  color: var(--destructive);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ===== Login Form ===== */
.login-form-container {
  background-color: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
}

.login-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-form-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.login-form-header p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px hsla(142, 76%, 46%, 0.2);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  cursor: pointer;
}

.form-checkbox {
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary);
}

.form-link {
  color: var(--primary);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.form-link:hover {
  color: hsl(142, 76%, 56%);
}

.form-submit {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-submit:hover {
  background-color: hsl(142, 76%, 41%);
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border);
}

/* ===== Payment Methods ===== */
.payment-icon {
  width: 48px;
  height: 48px;
  background-color: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.payment-icon.visa { background: linear-gradient(135deg, #1a1f71, #2e77bc); }
.payment-icon.mastercard { background: linear-gradient(135deg, #eb001b, #f79e1b); }
.payment-icon.skrill { background: linear-gradient(135deg, #872076, #9e2d72); }
.payment-icon.neteller { background: linear-gradient(135deg, #6db33f, #83c252); }
.payment-icon.paysafe { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.payment-icon.crypto { background: linear-gradient(135deg, #f7931a, #fbbf24); }
.payment-icon.bank { background-color: var(--secondary); }

.payment-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.payment-card:hover {
  border-color: hsla(142, 76%, 46%, 0.5);
}

.payment-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.payment-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.payment-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-detail {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.payment-detail svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.payment-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--gold);
  font-style: italic;
}

/* Payment Table */
.payment-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.payment-table th,
.payment-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.payment-table th {
  background-color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.payment-table td {
  font-size: 0.875rem;
}

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

.payment-table tr:hover td {
  background-color: hsla(142, 76%, 46%, 0.05);
}

/* ===== Steps / Registration ===== */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Benefits Grid ===== */
.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: hsla(142, 76%, 46%, 0.5);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background-color: hsla(142, 76%, 46%, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.benefit-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.benefit-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Warning Box ===== */
.warning-box {
  background-color: hsla(45, 93%, 47%, 0.1);
  border: 1px solid hsla(45, 93%, 47%, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
}

.warning-box svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.warning-box p {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* ===== Expert Quote ===== */
.expert-quote {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
}

.expert-quote::before {
  content: '"';
  font-size: 4rem;
  color: hsla(142, 76%, 46%, 0.2);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.expert-quote blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  padding-left: 2rem;
}

.expert-quote cite {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
  padding-left: 2rem;
}

/* ===== Security Section ===== */
.security-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .security-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.security-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  text-align: center;
}

.security-icon {
  width: 48px;
  height: 48px;
  background-color: hsla(142, 76%, 46%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.security-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.security-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.security-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Live Casino Games ===== */
.live-game-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.live-game-card:hover {
  border-color: hsla(142, 76%, 46%, 0.5);
  transform: translateY(-4px);
}

.live-game-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.live-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.live-game-card:hover .live-game-image img {
  transform: scale(1.05);
}

.live-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--destructive);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.live-game-content {
  padding: 1rem;
}

.live-game-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.live-game-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Compatibility Aliases ===== */
/* Nav Desktop (alias for .nav) */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

/* Mobile Nav Link (alias for .mobile-menu-link) */
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: hsla(142, 76%, 46%, 0.1);
  color: var(--primary);
}

/* Mobile Menu Content */
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}

/* Hamburger Button (alias for .menu-toggle) */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--foreground);
  border-radius: 1px;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* W-full utility */
.w-full {
  width: 100%;
}

/* Footer Brand (alias) */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand .logo {
  display: inline-flex;
}

/* mt-4 utility */
.mt-4 {
  margin-top: 1rem;
}
