/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0a0a0f;
  color: #e5e5e5;
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== CSS VARIABLES ===== */
:root {
  --background: #0a0a0f;
  --foreground: #e5e5e5;
  --card: #12121a;
  --card-foreground: #e5e5e5;
  --primary: #d4af37;
  --primary-foreground: #0a0a0f;
  --secondary: #1e40af;
  --muted: #1a1a24;
  --muted-foreground: #9ca3af;
  --accent: #22c55e;
  --destructive: #ef4444;
  --border: #2a2a3a;
  --gold-light: #f5d742;
  --gold-dark: #b8860b;
  --casino-dark: #0f0f18;
  --casino-darker: #08080c;
  --neon-green: #39ff14;
  --neon-blue: #00d4ff;
  --neon-purple: #a855f7;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== GRADIENTS ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* ===== IMAGES ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 12, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(8, 8, 12, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  padding: 0 16px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
  display: none;
  gap: 4px;
}

.lang-btn {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 12, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav li {
  list-style: none;
}

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
}

.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 0 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--primary));
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
  color: var(--primary-foreground);
}

.btn-hero {
  background: linear-gradient(135deg, var(--gold-light), var(--primary));
  color: var(--primary-foreground);
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
  color: var(--primary-foreground);
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 16px;
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.75rem;
}

.btn-xl {
  padding: 20px 40px;
  font-size: 1.125rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-small {
  min-height: 400px;
  padding: 100px 0 50px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.7), var(--background));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--primary);
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--foreground);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

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

.star {
  color: var(--muted-foreground);
  font-size: 1.25rem;
}

.star.filled {
  color: var(--primary);
}

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

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  background: rgba(18, 18, 26, 0.5);
  padding: 8px 12px;
  border-radius: 8px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
  position: relative;
}

.section-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TABLE OF CONTENTS ===== */
.toc-section {
  padding: 40px 0;
}

.toc {
  background: rgba(26, 26, 36, 0.3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.toc-title {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-list li {
  list-style: none;
}

.toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.toc-list li a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
}

.toc-list li a::before {
  content: "→";
  color: var(--primary);
  opacity: 0.5;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  background: var(--background);
}

.content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.article-content {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.article-content h2,
.content-title {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 24px;
  scroll-margin-top: 80px;
  color: var(--foreground);
}

.article-content h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--foreground);
}

.article-content p {
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.article-content strong {
  color: var(--foreground);
}

/* ===== PROS CONS SECTION ===== */
.pros-cons-section {
  background: var(--casino-dark);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pros-card,
.cons-card,
.rating-card {
  background: linear-gradient(180deg, var(--card) 0%, rgba(18, 18, 26, 0.8) 100%);
  border-radius: 16px;
  padding: 24px;
}

.pros-card {
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.cons-card {
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.rating-card {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.card-title {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.pros-list,
.cons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pros-list li,
.cons-list li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding-left: 8px;
  list-style: none;
}

.rating-circle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

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

.rating-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-item span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  min-width: 80px;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: var(--muted);
  border-radius: 4px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--gold-light));
  border-radius: 4px;
  transition: width 0.5s ease;
}

.rating-source {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-card {
  background: linear-gradient(180deg, var(--card) 0%, rgba(18, 18, 26, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

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

.features-image {
  margin-top: 40px;
}

.features-image img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* ===== GAMES SECTION ===== */
.games-section {
  background: var(--casino-dark);
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: block;
}

.game-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.game-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.3), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.game-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--foreground);
}

.game-overlay p {
  font-size: 0.875rem;
  color: var(--primary);
  margin: 0;
}

.providers {
  text-align: center;
  padding: 24px;
  background: rgba(18, 18, 26, 0.5);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.providers-title {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.providers-list {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
  background: var(--background);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-card {
  background: linear-gradient(180deg, var(--card) 0%, rgba(18, 18, 26, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s;
}

.bonus-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.bonus-card.featured {
  border-color: var(--primary);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
}

.bonus-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--primary));
  color: var(--primary-foreground);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px;
}

.bonus-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.bonus-card h2,
.bonus-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.bonus-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.bonus-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.bonus-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.bonus-details span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  background: rgba(26, 26, 36, 0.5);
  padding: 6px 12px;
  border-radius: 6px;
}

.promo-image {
  margin-bottom: 40px;
}

.promo-image img,
.promo-image-link img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: opacity 0.3s;
}

.promo-image-link:hover img {
  opacity: 0.9;
}

.terms-box {
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  scroll-margin-top: 80px;
}

.terms-box h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.terms-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-box li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  list-style: none;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: var(--casino-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: linear-gradient(180deg, var(--card) 0%, rgba(18, 18, 26, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary-foreground);
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

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

.review-stars {
  color: var(--primary);
  font-size: 0.875rem;
}

.review-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 16px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--accent);
}

/* ===== CHANGELOG SECTION ===== */
.changelog-section {
  background: var(--background);
}

.changelog-timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.changelog-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(180deg, var(--card) 0%, rgba(18, 18, 26, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.3s;
}

.changelog-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.changelog-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  min-width: 80px;
}

.changelog-badge {
  font-size: 0.625rem;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--primary-foreground);
}

.changelog-content {
  flex: 1;
  min-width: 200px;
}

.changelog-content h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: var(--foreground);
}

.changelog-content p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
  background: var(--casino-dark);
}

.payment-image {
  margin-bottom: 32px;
}

.payment-image img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.payment-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.payment-item {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  background: rgba(18, 18, 26, 0.5);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.payment-item strong {
  color: var(--foreground);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--casino-dark);
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item.faq-comprehensive {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer h4 {
  font-size: 1rem;
  color: var(--foreground);
  margin: 20px 0 12px;
}

.faq-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding: 0;
}

.faq-checklist li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  list-style: none;
  padding-left: 0;
}

/* ===== AUTHOR SECTION ===== */
.author-section {
  background: var(--background);
}

.author-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--card) 0%, rgba(18, 18, 26, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.author-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-initials {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.author-content h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--foreground);
}

.author-role {
  display: block;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.author-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 16px;
}

.author-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.author-meta span {
  background: rgba(26, 26, 36, 0.5);
  padding: 6px 12px;
  border-radius: 6px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--background);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  background: linear-gradient(180deg, var(--card) 0%, rgba(18, 18, 26, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

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

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--casino-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: opacity 0.3s;
}

.gallery-grid a:hover img {
  opacity: 0.9;
}

/* ===== LOGIN SECTION ===== */
.login-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background-size: cover;
  background-position: center;
}

.login-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0.85));
}

.login-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.login-benefits {
  display: none;
}

.login-benefits h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.benefit-icon {
  font-size: 2rem;
}

.benefit-content strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

.login-benefits img {
  width: 100%;
  border-radius: 12px;
  margin-top: 16px;
}

.login-form-container {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.login-card {
  background: linear-gradient(180deg, var(--card) 0%, rgba(18, 18, 26, 0.9) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.login-header h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

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

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

.input-wrapper input {
  width: 100%;
  padding: 12px 12px 12px 44px;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.3s;
  font-family: inherit;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-footer {
  text-align: right;
  margin-bottom: 8px;
}

.forgot-link {
  font-size: 0.875rem;
  color: var(--primary);
}

.login-register {
  text-align: center;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.login-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== APP FEATURES ===== */
.app-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.app-features-content {
  order: 2;
}

.app-screenshots {
  order: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.app-screenshots img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.app-screenshots img.screenshot-offset {
  margin-top: 32px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.feature-item .feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.feature-item span {
  font-size: 0.9375rem;
  font-weight: 500;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(18, 18, 26, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 16px;
}

.app-rating .stars {
  color: var(--primary);
  font-size: 1rem;
}

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

.rating-info strong {
  font-size: 1.125rem;
}

.rating-info span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.85));
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 24px;
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--casino-darker);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin-bottom: 8px;
}

.footer-col p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.footer-col h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li {
  list-style: none;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.license-badge,
.age-badge {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(26, 26, 36, 0.5);
}

.age-badge {
  color: var(--destructive);
  font-weight: 700;
}

.footer-links-external {
  font-size: 0.75rem;
  margin-top: 8px;
}

.footer-links-external a {
  color: var(--muted-foreground);
}

.footer-links-external a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 12px;
  padding: 12px;
  background: rgba(26, 26, 36, 0.3);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--primary));
  border: none;
  border-radius: 50%;
  color: var(--primary-foreground);
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

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

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.scroll-mt-20 {
  scroll-margin-top: 80px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

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

/* ===== MEDIA QUERIES ===== */
@media (min-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payment-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .author-box {
    flex-direction: row;
    text-align: left;
  }
  
  .author-meta {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .language-switcher {
    display: flex;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .pros-cons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .app-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .app-features-content {
    order: 1;
  }
  
  .app-screenshots {
    order: 2;
  }
  
  .payment-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .header-actions .btn-primary {
    display: inline-flex;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .login-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .login-benefits {
    display: block;
  }
  
  .payment-info {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===== PRINT ===== */
@media print {
  .header, .footer, .scroll-top, .btn, .mobile-menu {
    display: none !important;
  }
}
