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

:root {
  --color-primary: #7c3aed;
  --color-primary-light: #a78bfa;
  --color-primary-dark: #5b21b6;
  --color-primary-rgb: 124, 58, 237;
  --color-secondary: #f59e0b;
  --color-secondary-light: #fbbf24;
  --color-secondary-dark: #d97706;
  --color-accent: #06d6a0;
  --color-accent-dark: #059669;
  --color-danger: #ef4444;
  --color-danger-light: #fca5a5;
  --color-success: #10b981;
  --color-success-light: #6ee7b7;
  --color-warning: #f59e0b;
  --color-warning-light: #fde68a;
  --color-info: #3b82f6;
  --color-info-light: #93c5fd;
  --color-dark: #0f0a1e;
  --color-dark-secondary: #1a1230;
  --color-dark-tertiary: #251d42;
  --color-dark-card: #1e1638;
  --color-surface: #2a2050;
  --color-surface-hover: #342a60;
  --color-border: rgba(124, 58, 237, 0.2);
  --color-border-light: rgba(255, 255, 255, 0.08);
  --color-text-primary: #f1f0f5;
  --color-text-secondary: #b0a8c9;
  --color-text-muted: #7c73a0;
  --color-text-inverse: #0f0a1e;
  --color-white: #ffffff;
  --color-black: #000000;
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
  --gradient-hero: linear-gradient(160deg, #0f0a1e 0%, #1a1040 30%, #2d1b69 60%, #1a1040 100%);
  --gradient-card: linear-gradient(145deg, rgba(42, 32, 80, 0.8) 0%, rgba(30, 22, 56, 0.95) 100%);
  --gradient-cta: linear-gradient(135deg, var(--color-secondary) 0%, #ef4444 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-5xl: 3.75rem;
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.3);
  --shadow-glow-strong: 0 0 60px rgba(124, 58, 237, 0.5);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(124, 58, 237, 0.08);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-height: 70px;
  --container-max: 1280px;
  --container-narrow: 800px;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-tooltip: 500;
  --z-toast: 600;
}

/* ═══════════════════════════════════════════ */
/* RESET & BASE                                */
/* ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-primary);
  background-color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-white);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-md); }
h6 { font-size: var(--fs-base); }

p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
}

strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

em {
  font-style: italic;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════ */
/* UTILITY CLASSES                             */
/* ═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

/* ═══════════════════════════════════════════ */
/* BUTTONS                                     */
/* ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
}

.btn-md,
.btn:not(.btn-sm):not(.btn-lg):not(.btn-xl) {
  padding: 0.7rem 1.75rem;
  font-size: var(--fs-base);
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: var(--fs-md);
}

.btn-xl {
  padding: 1.1rem 3rem;
  font-size: var(--fs-lg);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(var(--color-primary-rgb), 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--color-primary-rgb), 0.5);
  color: var(--color-white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-login:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  background: var(--gradient-primary);
  color: var(--color-white);
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(var(--color-primary-rgb), 0.5);
  color: var(--color-white);
}

/* ═══════════════════════════════════════════ */
/* CTA BUTTON (generic)                        */
/* ═══════════════════════════════════════════ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: var(--color-white);
  background: var(--gradient-cta);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.45);
  color: var(--color-white);
}

.cta-button:active {
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════ */
/* HEADER                                      */
/* ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  background: rgba(15, 10, 30, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(15, 10, 30, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: var(--color-border);
}

.site-header .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--color-white);
  text-decoration: none;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.site-header .nav-links li a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.site-header .nav-links li a:hover,
.site-header .nav-links li a.active {
  color: var(--color-white);
  background: rgba(124, 58, 237, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-xl);
  color: var(--color-white);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-actions {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius-md);
  transition: background var(--transition-base);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 10, 30, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-overlay);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  padding: var(--space-xl) var(--space-md);
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Main Nav (desktop hidden on mobile by default) */
.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: rgba(124, 58, 237, 0.12);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════ */
/* HERO SECTION                                */
/* ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-md) var(--space-3xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero h1 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  text-align: center;
  max-width: 700px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-md) var(--space-3xl);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 10, 30, 0.85) 0%, rgba(26, 16, 64, 0.8) 50%, rgba(15, 10, 30, 0.92) 100%);
  z-index: 1;
}

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

.hero-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-secondary-light) 50%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

/* ═══════════════════════════════════════════ */
/* FEATURES STRIP                              */
/* ═══════════════════════════════════════════ */
.features-strip {
  background: var(--color-dark-secondary);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.feature-item {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(124, 58, 237, 0.12);
  color: var(--color-primary-light);
  margin-bottom: var(--space-md);
}

.feature-item h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.feature-item p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════ */
/* CONTENT SECTIONS (general)                  */
/* ═══════════════════════════════════════════ */
.content-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section-description {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ═══════════════════════════════════════════ */
/* ARTICLE CONTENT                             */
/* ═══════════════════════════════════════════ */
article.content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

article.content h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

article.content h3 {
  font-size: var(--fs-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

article.content p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

article.content ul,
article.content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

article.content ul {
  list-style-type: disc;
}

article.content ol {
  list-style-type: decimal;
}

article.content li {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
}

article.content li::marker {
  color: var(--color-primary-light);
}

article.content table {
  width: 100%;
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

article.content thead {
  background: var(--color-dark-tertiary);
}

article.content tbody tr {
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition-fast);
}

article.content tbody tr:nth-child(even) {
  background: rgba(124, 58, 237, 0.04);
}

article.content tbody tr:hover {
  background: rgba(124, 58, 237, 0.08);
}

article.content th {
  font-weight: var(--fw-semibold);
  text-align: left;
  padding: 0.9rem var(--space-md);
  color: var(--color-primary-light);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

article.content td {
  padding: 0.8rem var(--space-md);
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
}

article.content strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

article.content em {
  font-style: italic;
  color: var(--color-primary-light);
}

article.content a {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-decoration-color: rgba(167, 139, 250, 0.3);
  text-underline-offset: 3px;
  transition: all var(--transition-base);
}

article.content a:hover {
  color: var(--color-secondary-light);
  text-decoration-color: var(--color-secondary-light);
}

/* ═══════════════════════════════════════════ */
/* CASINO CARDS                                */
/* ═══════════════════════════════════════════ */
.casino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.casino-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.casino-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.casino-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.casino-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.casino-card:hover .casino-card-img img {
  transform: scale(1.08);
}

.casino-card-body {
  padding: var(--space-lg);
}

.casino-card-body h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.casino-card-body p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* ═══════════════════════════════════════════ */
/* PROMO BANNER                                */
/* ═══════════════════════════════════════════ */
.promo-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.85) 0%, rgba(15, 10, 30, 0.9) 100%);
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-4xl) var(--space-md);
  max-width: 650px;
}

.promo-content h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.promo-content p {
  margin-bottom: var(--space-xl);
  font-size: var(--fs-md);
}

/* ═══════════════════════════════════════════ */
/* SPORTS SECTION                              */
/* ═══════════════════════════════════════════ */
.sports-section {
  background: var(--color-dark-secondary);
}

.sports-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.sports-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sports-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.sport-highlight:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: var(--color-border);
  transform: translateX(4px);
}

.sport-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.sport-highlight h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
}

.sport-highlight p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.sports-info > .btn {
  margin-top: var(--space-md);
}

/* ═══════════════════════════════════════════ */
/* BONUS SECTION                               */
/* ═══════════════════════════════════════════ */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.bonus-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.bonus-card-featured {
  border-color: var(--color-secondary);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
}

.bonus-card-featured:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.25), var(--shadow-lg);
}

.bonus-card-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 0.3rem 0.9rem;
  background: var(--gradient-cta);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.bonus-card-img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.bonus-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.bonus-card:hover .bonus-card-img img {
  transform: scale(1.06);
}

.bonus-card-body {
  padding: var(--space-lg);
}

.bonus-card-body h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.bonus-card-body p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* ═══════════════════════════════════════════ */
/* APP SECTION                                 */
/* ═══════════════════════════════════════════ */
.app-section {
  background: var(--color-dark-secondary);
  overflow: hidden;
}

.app-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.app-image {
  text-align: center;
}

.app-image img {
  max-width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.app-info h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.app-description {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.app-features-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.app-features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
}

.app-features-list li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════ */
/* PAYMENT SECTION                             */
/* ═══════════════════════════════════════════ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  text-align: center;
}

.payment-item:hover {
  border-color: var(--color-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.payment-icon {
  font-size: 2rem;
  line-height: 1;
}

.payment-item span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
}

/* ═══════════════════════════════════════════ */
/* TRUST SECTION                               */
/* ═══════════════════════════════════════════ */
.trust-section {
  background: var(--color-dark-secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.trust-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.trust-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.trust-number {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.trust-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════ */
/* FAQ SECTION & ACCORDION                     */
/* ═══════════════════════════════════════════ */
.faq-section {
  background: var(--color-dark);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  background: var(--color-dark-secondary);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-border);
}

.faq-item.open {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--color-primary-light);
}

.faq-question span {
  flex: 1;
  padding-right: var(--space-md);
}

.faq-arrow {
  flex-shrink: 0;
  color: var(--color-primary-light);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════ */
/* CTA SECTION                                 */
/* ═══════════════════════════════════════════ */
.cta-section {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.88) 0%, rgba(15, 10, 30, 0.92) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-4xl) var(--space-md);
  max-width: 650px;
}

.cta-content h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.cta-content p {
  font-size: var(--fs-md);
  margin-bottom: var(--space-xl);
}

.cta-section .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--color-white);
  background: var(--gradient-cta);
  border: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 6px 24px rgba(239, 68, 68, 0.3);
}

.cta-section .btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.45);
  color: var(--color-white);
}

/* ═══════════════════════════════════════════ */
/* FOOTER                                      */
/* ═══════════════════════════════════════════ */
.site-footer {
  background: var(--color-dark);
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo span {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo img {
  border-radius: var(--radius-sm);
}

.footer-about {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  max-width: 300px;
}

.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-primary-light);
  padding-left: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  list-style: none;
}

.footer-nav a {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-nav a:hover {
  color: var(--color-primary-light);
}

.footer-age-restriction {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-danger);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.footer-age-restriction p {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.footer-bottom {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border-light);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.footer-disclaimer {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--space-md) 0;
  max-width: 700px;
  margin: 0 auto;
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: BADGES                            */
/* ═══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.badge-primary {
  background: rgba(var(--color-primary-rgb), 0.15);
  color: var(--color-primary-light);
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-success-light);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-warning-light);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-danger-light);
}

.badge-info {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-info-light);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: ALERTS                            */
/* ═══════════════════════════════════════════ */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  border-left: 4px solid;
  margin-bottom: var(--space-md);
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-success);
  color: var(--color-success-light);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-warning);
  color: var(--color-warning-light);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--color-danger);
  color: var(--color-danger-light);
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-info);
  color: var(--color-info-light);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: FORMS & INPUTS                    */
/* ═══════════════════════════════════════════ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem var(--space-md);
  font-size: var(--fs-base);
  color: var(--color-text-primary);
  background: var(--color-dark-tertiary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  appearance: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--color-border);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.2);
}

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

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.form-help {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--color-danger);
  margin-top: var(--space-xs);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: CARDS                             */
/* ═══════════════════════════════════════════ */
.card {
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.card-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.card-body {
  padding: var(--space-lg);
}

.card-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.card-img {
  overflow: hidden;
}

.card-img img {
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* ═══════════════════════════════════════════ */
/* REUSABLE: TABS                              */
/* ═══════════════════════════════════════════ */
.tabs {
  margin-bottom: var(--space-xl);
}

.tab-list {
  display: flex;
  gap: var(--space-xs);
  border-bottom: 2px solid var(--color-border-light);
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab-button {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: all var(--transition-base);
}

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

.tab-button.active {
  color: var(--color-primary-light);
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.tab-panel {
  display: none;
  padding: var(--space-xl) 0;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 300ms ease;
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: MODAL                             */
/* ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--color-dark-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalIn 300ms ease;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.modal-header h3 {
  font-size: var(--fs-lg);
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.modal-body {
  padding: var(--space-lg);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: TOOLTIP                           */
/* ═══════════════════════════════════════════ */
.tooltip-wrapper {
  position: relative;
  display: inline-flex;
}

.tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 0.8rem;
  background: var(--color-dark-tertiary);
  color: var(--color-text-primary);
  font-size: var(--fs-xs);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: var(--z-tooltip);
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-border);
}

.tooltip-wrapper:hover .tooltip {
  opacity: 1;
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: PAGINATION                        */
/* ═══════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-xl) 0;
}

.pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  background: var(--color-dark-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
}

.pagination-item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
}

.pagination-item.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.pagination-item.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: BREADCRUMBS                       */
/* ═══════════════════════════════════════════ */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
}

.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs a:hover {
  color: var(--color-primary-light);
}

.breadcrumbs .separator {
  color: var(--color-text-muted);
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--color-text-primary);
  font-weight: var(--fw-medium);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: EMPTY & LOADING STATES            */
/* ═══════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: var(--space-4xl) var(--space-md);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.empty-state h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.empty-state p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border-light);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-skeleton {
  background: linear-gradient(90deg, var(--color-dark-secondary) 25%, var(--color-dark-tertiary) 50%, var(--color-dark-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: CONTENT DIVIDERS                  */
/* ═══════════════════════════════════════════ */
.divider {
  border: none;
  height: 1px;
  background: var(--color-border-light);
  margin: var(--space-2xl) 0;
}

.divider-gradient {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: CODE BLOCKS                       */
/* ═══════════════════════════════════════════ */
.code-block {
  background: var(--color-dark-tertiary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--color-primary-light);
  line-height: 1.6;
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-primary-light);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: STAT BLOCKS                       */
/* ═══════════════════════════════════════════ */
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-xl);
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: TESTIMONIALS                      */
/* ═══════════════════════════════════════════ */
.testimonial-block {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
}

.testimonial-block::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-size: 4rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.3;
}

.testimonial-text {
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin-bottom: var(--space-md);
  padding-top: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
}

.testimonial-name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--color-text-primary);
}

.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: MEDIA CONTAINERS                  */
/* ═══════════════════════════════════════════ */
.media-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.media-container.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.media-container.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.media-container.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

.media-container img,
.media-container video,
.media-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: SECONDARY NAV                     */
/* ═══════════════════════════════════════════ */
.secondary-nav {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-sm) 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.secondary-nav::-webkit-scrollbar {
  display: none;
}

.secondary-nav-link {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

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

/* ═══════════════════════════════════════════ */
/* REUSABLE: CHARTS / DATA VISUAL              */
/* ═══════════════════════════════════════════ */
.chart-container {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  min-height: 250px;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.chart-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: var(--color-dark-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

/* ═══════════════════════════════════════════ */
/* REUSABLE: GENERAL TABLES                    */
/* ═══════════════════════════════════════════ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.data-table thead {
  background: var(--color-dark-tertiary);
}

.data-table th {
  padding: 0.85rem var(--space-md);
  text-align: left;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table td {
  padding: 0.75rem var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-light);
}

.data-table tbody tr:nth-child(even) {
  background: rgba(124, 58, 237, 0.03);
}

.data-table tbody tr:hover {
  background: rgba(124, 58, 237, 0.08);
}

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

/* ═══════════════════════════════════════════ */
/* REUSABLE: LISTS                             */
/* ═══════════════════════════════════════════ */
.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
}

.styled-list li::before {
  content: '→';
  color: var(--color-primary-light);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.check-list li::before {
  content: '✓';
  color: var(--color-accent);
}

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

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

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

/* ═══════════════════════════════════════════ */
/* RESPONSIVE: TABLET (768px+)                 */
/* ═══════════════════════════════════════════ */
@media (min-width: 768px) {
  :root {
    --fs-3xl: 3rem;
    --fs-4xl: 3.5rem;
  }

  .container {
    padding: 0 var(--space-xl);
  }

  .hero-title {
    font-size: var(--fs-3xl);
  }

  .hero h1 {
    font-size: var(--fs-3xl);
  }

  .hero-cta-group {
    flex-direction: row;
    gap: var(--space-md);
  }

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

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-card-featured {
    grid-column: span 2;
  }

  .sports-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .app-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .promo-content h2 {
    font-size: var(--fs-3xl);
  }

  .cta-content h2 {
    font-size: var(--fs-3xl);
  }

  .section-title {
    font-size: var(--fs-2xl);
  }
}

/* ═══════════════════════════════════════════ */
/* RESPONSIVE: DESKTOP (1024px+)               */
/* ═══════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root {
    --fs-3xl: 3.5rem;
    --fs-4xl: 4rem;
  }

  .container {
    padding: 0 var(--space-2xl);
  }

  /* Desktop header */
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .hero-title {
    font-size: var(--fs-4xl);
  }

  .hero h1 {
    font-size: var(--fs-4xl);
  }

  .hero-section {
    min-height: 90vh;
  }

  .hero-subtitle {
    font-size: var(--fs-lg);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .casino-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bonus-card-featured {
    grid-column: span 1;
  }

  .payment-grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .section-title {
    font-size: var(--fs-3xl);
  }

  .promo-content h2,
  .cta-content h2 {
    font-size: var(--fs-3xl);
  }

  .app-image img {
    max-width: 400px;
  }

  .content-section {
    padding: var(--space-5xl) 0;
  }
}

/* ═══════════════════════════════════════════ */
/* RESPONSIVE: LARGE DESKTOP (1280px+)         */
/* ═══════════════════════════════════════════ */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* ═══════════════════════════════════════════ */
/* PRINT STYLES                                */
/* ═══════════════════════════════════════════ */
@media print {
  .site-header,
  .mobile-menu,
  .mobile-menu-toggle,
  .hamburger,
  .hero-section,
  .hero,
  .features-strip,
  .promo-banner,
  .cta-section,
  .site-footer,
  .btn,
  .cta-button,
  .btn-login,
  .btn-register,
  .nav-links,
  .footer-nav {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  article.content {
    max-width: 100%;
    padding: 0;
  }

  article.content h2,
  article.content h3 {
    color: #000;
    page-break-after: avoid;
  }

  article.content p {
    color: #333;
  }

  article.content a {
    color: #000;
    text-decoration: underline;
  }

  article.content table {
    border: 1px solid #ccc;
  }

  article.content th,
  article.content td {
    border: 1px solid #ccc;
    color: #000;
  }

  article.content thead {
    background: #f0f0f0;
  }
}

/* ═══════════════════════════════════════════ */
/* ACCESSIBILITY: REDUCED MOTION               */
/* ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════ */
/* HIGH CONTRAST MODE                          */
/* ═══════════════════════════════════════════ */
@media (prefers-contrast: high) {
  :root {
    --color-border-light: rgba(255, 255, 255, 0.3);
    --color-text-muted: #b0a8c9;
    --color-text-secondary: #d4d0e0;
  }

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