/* ========================================
   ZOCCER.PL - STYLES
   ======================================== */

/* === CSS VARIABLES === */
:root {
  /* Primary Colors */
  --zoccer-red: #E4002B;
  --zoccer-red-dark: #B80023;
  --zoccer-red-light: #FF1744;
  
  /* Accent Colors */
  --zoccer-orange: #FF6B35;
  --zoccer-magenta: #C724B1;
  --zoccer-purple: #6E3AFF;
  --zoccer-cyan: #00D4FF;
  --zoccer-teal: #00BFA6;
  --zoccer-gold: #FFD700;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #E4002B 0%, #FF2D55 50%, #FF6B35 100%);
  --gradient-dark: linear-gradient(135deg, #0A0A12 0%, #1A1A28 100%);
  --gradient-casino: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  
  /* Backgrounds */
  --bg-body: #F4F6FA;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F8F9FC;
  --bg-dark: #0A0A12;
  --bg-dark-alt: #12121C;
  --bg-input: #EEF1F6;
  
  /* Text */
  --text-primary: #0F1115;
  --text-secondary: #5F6368;
  --text-muted: #9AA0A6;
  --text-inverse: #FFFFFF;
  
  /* Borders */
  --border-color: #E0E4EA;
  --border-light: #EEF1F6;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-glow: 0 4px 20px rgba(228, 0, 43, 0.3);
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 10px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 40px;
  --font-size-5xl: 48px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

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

ul, ol {
  list-style: none;
}

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(228, 0, 43, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--zoccer-red);
  color: var(--zoccer-red);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-inverse);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-hero {
  padding: 16px 40px;
  font-size: var(--font-size-base);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  background: var(--gradient-primary);
  color: var(--text-inverse);
  box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(228, 0, 43, 0.5);
}

.btn-casino {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  padding: 14px 32px;
}

.btn-promo {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--text-inverse);
  padding: 12px 20px;
}

.btn-cta {
  padding: 18px 48px;
  font-size: var(--font-size-lg);
  font-weight: 800;
  background: var(--text-inverse);
  color: var(--zoccer-red);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

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

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-6deg);
  box-shadow: var(--shadow-glow);
}

.logo-mark svg {
  color: var(--text-inverse);
  transform: skewX(6deg);
}

.logo-name {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
}

.logo-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  padding: 10px 20px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-input);
}

.nav-link.active {
  color: var(--zoccer-red);
  background: rgba(228, 0, 43, 0.08);
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-search {
  position: relative;
  width: 240px;
}

.header-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.header-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  font-size: var(--font-size-sm);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-fast);
}

.header-search input:focus {
  border-color: var(--zoccer-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

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

/* === HERO === */
.hero {
  position: relative;
  min-height: 600px;
  padding: 120px 0 60px;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(228, 0, 43, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--zoccer-red);
  border-radius: 50%;
  box-shadow: 0 0 12px 4px rgba(228, 0, 43, 0.5);
  animation: pulse 3s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; right: 25%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; right: 15%; animation-delay: 0.5s; }
.particle:nth-child(3) { top: 60%; right: 30%; animation-delay: 1s; }

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  gap: var(--space-3xl);
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-inverse);
  margin-bottom: var(--space-lg);
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  color: var(--text-inverse);
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.hero-offer {
  margin-bottom: var(--space-xl);
}

.offer-card {
  display: inline-flex;
  flex-direction: column;
  padding: 20px 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.offer-label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.offer-value {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-extra {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--zoccer-cyan);
  margin-top: var(--space-xs);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.hero-terms {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.5);
}

.hero-visual {
  flex-shrink: 0;
}

.hero-image-placeholder {
  width: 400px;
  height: 280px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder span {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: var(--space-3xl) auto 0;
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 900;
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.6);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* === SECTIONS === */
section {
  padding: var(--space-3xl) 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}

.section-title.center {
  justify-content: center;
  text-align: center;
}

.title-icon {
  font-size: 24px;
}

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

.subsection-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.see-all-link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--zoccer-cyan);
  transition: var(--transition-fast);
}

.see-all-link:hover {
  text-decoration: underline;
}

/* === CATEGORIES === */
.categories {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
}

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

.category-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::before {
  opacity: 1;
}

.category-live-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 4px 10px;
  background: var(--zoccer-red);
  color: var(--text-inverse);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
  animation: live-pulse 2s ease-in-out infinite;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--text-inverse);
  border-radius: 50%;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.category-icon {
  font-size: 40px;
  margin-bottom: var(--space-md);
}

.category-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.category-desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.category-link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--zoccer-red);
}

/* === SPORTS SECTION === */
.sports-section {
  background: var(--bg-body);
}

.sports-tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.sport-tab {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.sport-tab:hover {
  border-color: var(--zoccer-red);
  color: var(--zoccer-red);
}

.sport-tab.active {
  background: var(--zoccer-red);
  border-color: var(--zoccer-red);
  color: var(--text-inverse);
}

.tab-icon {
  font-size: 18px;
}

.leagues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.league-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-fast);
}

.league-card:hover {
  border-color: var(--zoccer-cyan);
  box-shadow: var(--shadow-md);
}

.league-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.league-flag {
  font-size: 28px;
}

.league-info {
  flex: 1;
}

.league-name {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text-primary);
}

.league-events {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.league-live {
  padding: 4px 8px;
  background: var(--zoccer-red);
  color: var(--text-inverse);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
  animation: live-pulse 2s ease-in-out infinite;
}

.league-action {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
}

.league-promo {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--zoccer-teal);
}

/* === LIVE MATCHES === */
.live-matches {
  margin-top: var(--space-2xl);
}

.live-indicator {
  width: 8px;
  height: 8px;
  background: var(--zoccer-red);
  border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
}

.live-count {
  font-size: var(--font-size-sm);
  color: var(--zoccer-red);
  font-weight: 600;
}

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

.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-fast);
}

.match-card:hover {
  border-color: var(--zoccer-red);
  box-shadow: 0 4px 16px rgba(228, 0, 43, 0.1);
}

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

.match-league {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.match-time {
  padding: 4px 8px;
  background: rgba(228, 0, 43, 0.1);
  color: var(--zoccer-red);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.match-teams {
  margin-bottom: var(--space-md);
}

.team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.team-name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.team-score {
  font-size: var(--font-size-xl);
  font-weight: 900;
  font-style: italic;
  color: var(--zoccer-red);
}

.match-odds {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.odd-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-sm);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.odd-btn:hover {
  border-color: var(--zoccer-cyan);
  background: rgba(0, 212, 255, 0.08);
}

.odd-label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.odd-value {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-primary);
}

.match-markets {
  font-size: var(--font-size-xs);
  color: var(--zoccer-cyan);
  text-align: center;
}

/* === BETTING FEATURES === */
.betting-features {
  background: var(--bg-card);
}

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

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: var(--space-md);
}

.feature-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.feature-desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === CASINO SECTION === */
.casino-section {
  background: var(--bg-body);
}

.casino-hero-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  padding: var(--space-2xl);
  background: var(--gradient-casino);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.casino-hero-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(199, 36, 177, 0.2) 0%, transparent 60%);
}

.casino-hero-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
}

.casino-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: var(--space-md);
}

.casino-title {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  font-style: italic;
  color: var(--text-inverse);
  margin-bottom: var(--space-md);
}

.casino-desc {
  font-size: var(--font-size-base);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.casino-cta {
  display: flex;
  gap: var(--space-md);
}

.casino-hero-visual {
  position: relative;
  z-index: 1;
}

.casino-image-placeholder {
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, rgba(199, 36, 177, 0.2) 0%, rgba(110, 58, 255, 0.1) 100%);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-image-placeholder span {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

/* Casino Stats */
.casino-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.casino-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
}

.casino-stat-value {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(135deg, var(--zoccer-magenta), var(--zoccer-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-xs);
}

.casino-stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

/* Games Categories */
.games-categories {
  margin-bottom: var(--space-2xl);
}

.game-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.game-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.game-category-card:hover {
  border-color: var(--zoccer-magenta);
  transform: translateY(-2px);
}

.game-category-card.featured {
  background: linear-gradient(135deg, rgba(199, 36, 177, 0.05) 0%, rgba(110, 58, 255, 0.05) 100%);
  border-color: rgba(199, 36, 177, 0.2);
}

.category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.category-emoji {
  font-size: 32px;
}

.category-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text-primary);
}

.category-count {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--zoccer-magenta);
}

.category-text {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tag {
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(199, 36, 177, 0.1) 0%, rgba(110, 58, 255, 0.1) 100%);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--zoccer-magenta);
}

/* Popular Games */
.popular-games {
  margin-bottom: var(--space-2xl);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-input);
}

.game-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.game-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 4px 8px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
}

.game-badge.hot {
  background: var(--zoccer-red);
}

.game-badge.new {
  background: var(--zoccer-cyan);
  color: var(--bg-dark);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-play {
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: var(--text-inverse);
  font-size: var(--font-size-sm);
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.btn-demo {
  padding: 8px 16px;
  background: transparent;
  color: var(--text-inverse);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
}

.game-info {
  padding: var(--space-md);
}

.game-name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.game-provider {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

/* Jackpots */
.jackpots-section {
  background: var(--gradient-casino);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.jackpots-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.jackpot-icon {
  font-size: 40px;
}

.jackpots-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  font-style: italic;
  color: var(--text-inverse);
}

.jackpots-subtitle {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.6);
}

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

.jackpot-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.jackpot-card.must-drop {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-color: rgba(228, 0, 43, 0.3);
}

.must-drop-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--zoccer-red);
  color: var(--text-inverse);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.jackpot-game {
  display: block;
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-xs);
}

.jackpot-amount {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: 900;
  font-style: italic;
  color: var(--zoccer-gold);
  margin-bottom: var(--space-xs);
}

.jackpot-provider {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.5);
}

/* === PROMOTIONS === */
.promotions-section {
  background: var(--bg-card);
}

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

.promo-card {
  position: relative;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.promo-card.featured {
  background: var(--gradient-dark);
  border: none;
  grid-column: span 1;
}

.promo-card.featured .promo-title,
.promo-card.featured .promo-value {
  color: var(--text-inverse);
}

.promo-card.featured .promo-desc {
  color: rgba(255,255,255,0.7);
}

.promo-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 4px 10px;
  background: var(--zoccer-cyan);
  color: var(--bg-dark);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.promo-icon {
  font-size: 36px;
  margin-bottom: var(--space-md);
}

.promo-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.promo-value {
  font-size: var(--font-size-xl);
  font-weight: 900;
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-sm);
}

.promo-card.featured .promo-value {
  -webkit-text-fill-color: var(--text-inverse);
}

.promo-desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.promo-terms {
  display: flex;
  gap: var(--space-md);
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.promo-card.featured .promo-terms {
  color: rgba(255,255,255,0.5);
}

/* === VIP SECTION === */
.vip-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.vip-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
}

.vip-content {
  position: relative;
  z-index: 1;
}

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

.vip-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  font-size: var(--font-size-sm);
  font-weight: 800;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.vip-title {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  font-style: italic;
  color: var(--text-inverse);
  margin-bottom: var(--space-sm);
}

.vip-desc {
  font-size: var(--font-size-base);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
}

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

.vip-tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.vip-tier:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.vip-tier.featured {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.tier-icon {
  font-size: 40px;
  margin-bottom: var(--space-md);
}

.tier-name {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--text-inverse);
  margin-bottom: var(--space-sm);
}

.tier-perk {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* === PAYMENTS === */
.payments-section {
  background: var(--bg-body);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-fast);
}

.payment-card:hover {
  border-color: var(--zoccer-cyan);
}

.payment-icon {
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.payment-name {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.payment-time {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--zoccer-teal);
}

.payments-info {
  text-align: center;
}

.payments-info p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

/* === APP SECTION === */
.app-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 0% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
}

.app-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3xl);
}

.app-text {
  max-width: 500px;
}

.app-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--zoccer-cyan);
  color: var(--bg-dark);
  font-size: var(--font-size-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.app-title {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  font-style: italic;
  color: var(--text-inverse);
  margin-bottom: var(--space-md);
}

.app-desc {
  font-size: var(--font-size-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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

.app-features li {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-sm);
}

.app-buttons {
  display: flex;
  gap: var(--space-md);
}

.app-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  background: var(--text-inverse);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}

.app-visual {
  flex-shrink: 0;
}

.app-image-placeholder {
  width: 240px;
  height: 340px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(228, 0, 43, 0.1) 100%);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-image-placeholder span {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

/* === SECURITY === */
.security-section {
  background: var(--bg-card);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.security-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-fast);
}

.security-card:hover {
  border-color: var(--zoccer-teal);
}

.security-icon {
  font-size: 32px;
  margin-bottom: var(--space-md);
}

.security-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.security-desc {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  line-height: 1.5;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.partner {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-secondary);
}

/* === FAQ === */
.faq-section {
  background: var(--bg-body);
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.faq-question:hover {
  background: var(--bg-input);
}

.faq-question::after {
  content: '+';
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  transition: transform var(--transition-base);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === FINAL CTA === */
.final-cta {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.2) 0%, transparent 60%);
}

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

.cta-title {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  font-style: italic;
  color: var(--text-inverse);
  margin-bottom: var(--space-sm);
}

.cta-desc {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
}

.cta-offer {
  display: inline-flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-2xl);
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
}

.cta-label {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-xs);
}

.cta-value {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--text-inverse);
}

.cta-terms {
  display: block;
  margin-top: var(--space-md);
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.6);
}

/* === ABOUT === */
.about-section {
  background: var(--gradient-dark);
}

.about-content {
  display: flex;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-title {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  font-style: italic;
  color: var(--text-inverse);
  margin-bottom: var(--space-lg);
}

.about-text p {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

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

.about-stat {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.stat-num {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 900;
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-xs);
}

.stat-txt {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.6);
}

/* === RESPONSIBLE GAMING === */
.responsible-section {
  background: var(--bg-card);
  padding: var(--space-xl) 0;
}

.responsible-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(0, 191, 166, 0.2);
  border-radius: var(--radius-lg);
}

.responsible-icon {
  width: 64px;
  height: 64px;
  background: var(--zoccer-teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.responsible-icon svg {
  color: var(--text-inverse);
}

.responsible-content {
  flex: 1;
}

.responsible-title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.responsible-content p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.responsible-links {
  display: flex;
  gap: var(--space-lg);
}

.responsible-links a {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--zoccer-teal);
}

.responsible-links a:hover {
  text-decoration: underline;
}

.age-badge {
  width: 56px;
  height: 56px;
  background: var(--zoccer-red);
  color: var(--text-inverse);
  font-size: var(--font-size-xl);
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  max-width: 280px;
}

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

.footer-logo .logo-mark {
  width: 36px;
  height: 36px;
}

.footer-logo .logo-name {
  font-size: var(--font-size-lg);
  color: var(--text-inverse);
}

.footer-desc {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: var(--space-3xl);
}

.footer-col-title {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--text-inverse);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--zoccer-cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-legal p {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-payments {
  display: flex;
  gap: var(--space-sm);
}

.payment-badge {
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .leagues-grid,
  .matches-grid,
  .features-grid,
  .game-category-grid,
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .casino-stats,
  .jackpots-grid,
  .security-grid,
  .vip-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .header-search {
    display: none;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }
  
  .stat-divider {
    display: none;
  }
  
  .casino-hero-block {
    flex-direction: column;
    text-align: center;
  }
  
  .casino-hero-visual {
    display: none;
  }
  
  .casino-cta {
    justify-content: center;
  }
  
  .app-content {
    flex-direction: column;
    text-align: center;
  }
  
  .app-visual {
    display: none;
  }
  
  .app-buttons {
    justify-content: center;
  }
  
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 36px;
    --font-size-4xl: 28px;
    --font-size-3xl: 24px;
    --font-size-2xl: 20px;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
  
  .category-grid,
  .leagues-grid,
  .matches-grid,
  .features-grid,
  .game-category-grid,
  .promo-grid,
  .casino-stats,
  .jackpots-grid,
  .security-grid,
  .vip-tiers,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .responsible-card {
    flex-direction: column;
    text-align: center;
  }
  
  .responsible-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 40px;
  }
  
  .hero-stats {
    padding: var(--space-md);
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-hero {
    width: 100%;
  }
  
  .app-buttons {
    flex-direction: column;
  }
  
  .app-btn {
    justify-content: center;
  }
}
.guide-section {
  padding: 80px 0;
  background: var(--bg-body, #F4F6FA);
}

.guide-section.casino-guide {
  background: linear-gradient(180deg, #1a0a2e 0%, #0f0620 100%);
}

.guide-section.bonus-guide {
  background: linear-gradient(180deg, #FFFBF5 0%, #FFF5EB 100%);
}

.guide-section.why-section {
  background: var(--bg-card, #FFFFFF);
}

.guide-section.starter-guide {
  background: linear-gradient(180deg, #F0F7FF 0%, #E8F4FD 100%);
}

/* === GUIDE HEADER === */
.guide-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.guide-header.dark {
  color: #FFFFFF;
}

.guide-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #E4002B 0%, #FF6B35 100%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.guide-badge.purple {
  background: linear-gradient(135deg, #C724B1 0%, #6E3AFF 100%);
}

.guide-badge.gold {
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  color: #1a1a1a;
}

.guide-badge.green {
  background: linear-gradient(135deg, #00BFA6 0%, #00D4FF 100%);
  color: #0a1a1a;
}

.guide-badge.blue {
  background: linear-gradient(135deg, #00D4FF 0%, #6E3AFF 100%);
}

.guide-title {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  color: var(--text-primary, #0F1115);
  margin-bottom: 16px;
  line-height: 1.2;
}

.guide-header.dark .guide-title {
  color: #FFFFFF;
}

.guide-intro {
  font-size: 16px;
  color: var(--text-secondary, #5F6368);
  line-height: 1.8;
}

.guide-header.dark .guide-intro {
  color: rgba(255, 255, 255, 0.75);
}

/* === GUIDE CONTENT === */
.guide-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.guide-content.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.guide-content.steps-format {
  gap: 0;
}

/* === GUIDE BLOCK === */
.guide-block {
  background: var(--bg-card, #FFFFFF);
  border: 1px solid var(--border-color, #E0E4EA);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.guide-block:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.guide-block.dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.guide-block.dark:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(199, 36, 177, 0.15);
}

.guide-block.highlight {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFEFDC 100%);
  border-color: rgba(255, 140, 0, 0.2);
}

.guide-block.full-width {
  grid-column: span 2;
}

.guide-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.block-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.block-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary, #0F1115);
}

.guide-block.dark .block-title {
  color: #FFFFFF;
}

.guide-block-content p {
  font-size: 15px;
  color: var(--text-secondary, #5F6368);
  line-height: 1.9;
  margin-bottom: 16px;
}

.guide-block-content p:last-child {
  margin-bottom: 0;
}

.guide-block.dark .guide-block-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* === BONUS TERMS BOX === */
.bonus-terms-box {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(228, 0, 43, 0.05);
  border: 1px solid rgba(228, 0, 43, 0.15);
  border-radius: 12px;
}

.bonus-terms-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #0F1115);
  margin-bottom: 12px;
}

.bonus-terms-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.bonus-terms-box li {
  font-size: 13px;
  color: var(--text-secondary, #5F6368);
  padding-left: 20px;
  position: relative;
}

.bonus-terms-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00BFA6;
  font-weight: 700;
}

/* === GUIDE CTA === */
.guide-cta {
  text-align: center;
  padding: 32px;
  background: var(--bg-card-alt, #F8F9FC);
  border-radius: 16px;
  border: 1px solid var(--border-color, #E0E4EA);
}

.guide-cta.dark {
  background: linear-gradient(135deg, rgba(199, 36, 177, 0.15) 0%, rgba(110, 58, 255, 0.1) 100%);
  border-color: rgba(199, 36, 177, 0.2);
}

.guide-cta.blue {
  background: linear-gradient(135deg, #0A0A12 0%, #1A1A28 100%);
  border: none;
}

.guide-cta.blue p {
  color: rgba(255, 255, 255, 0.9);
}

.guide-cta p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary, #0F1115);
  margin-bottom: 16px;
}

.guide-cta.dark p {
  color: #FFFFFF;
}

/* === STEPS FORMAT === */
.guide-step {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--bg-card, #FFFFFF);
  border: 1px solid var(--border-color, #E0E4EA);
  border-radius: 0;
  position: relative;
}

.guide-step:first-child {
  border-radius: 20px 20px 0 0;
}

.guide-step:last-child {
  border-radius: 0 0 20px 20px;
}

.guide-step:not(:last-child) {
  border-bottom: none;
}

.guide-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 56px;
  bottom: 0;
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, #E4002B, #FF6B35);
  transform: translateY(100%);
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E4002B 0%, #FF6B35 100%);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(228, 0, 43, 0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary, #0F1115);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary, #5F6368);
  line-height: 1.8;
  margin-bottom: 12px;
}

.step-tip {
  margin-top: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 191, 166, 0.05) 100%);
  border-left: 4px solid #00D4FF;
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  color: var(--text-primary, #0F1115);
}

.step-tip strong {
  color: #00BFA6;
}

/* === STARTER FAQ === */
.starter-faq {
  margin-top: 48px;
  padding: 40px;
  background: var(--bg-card, #FFFFFF);
  border: 1px solid var(--border-color, #E0E4EA);
  border-radius: 20px;
}

.starter-faq-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary, #0F1115);
  text-align: center;
  margin-bottom: 32px;
}

.starter-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.starter-faq-item {
  padding: 24px;
  background: var(--bg-card-alt, #F8F9FC);
  border-radius: 16px;
}

.starter-faq-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary, #0F1115);
  margin-bottom: 8px;
}

.starter-faq-item p {
  font-size: 14px;
  color: var(--text-secondary, #5F6368);
  line-height: 1.7;
}

/* === WHY SECTION SPECIFIC === */
.why-section .guide-content.two-columns {
  gap: 20px;
}

.why-section .guide-block {
  background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
}

.why-section .guide-block:hover {
  background: var(--bg-card, #FFFFFF);
}

/* === BONUS GUIDE SPECIFIC === */
.bonus-guide .guide-block {
  background: var(--bg-card, #FFFFFF);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .guide-content.two-columns {
    grid-template-columns: 1fr;
  }
  
  .guide-block.full-width {
    grid-column: span 1;
  }
  
  .bonus-terms-box ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .guide-section {
    padding: 60px 0;
  }
  
  .guide-title {
    font-size: 28px;
  }
  
  .guide-block {
    padding: 24px;
  }
  
  .starter-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .guide-section {
    padding: 48px 0;
  }
  
  .guide-header {
    margin-bottom: 32px;
  }
  
  .guide-title {
    font-size: 24px;
  }
  
  .guide-intro {
    font-size: 14px;
  }
  
  .guide-block {
    padding: 20px;
    border-radius: 16px;
  }
  
  .guide-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .block-title {
    font-size: 18px;
  }
  
  .guide-block-content p {
    font-size: 14px;
  }
  
  .guide-step {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  
  .guide-step:not(:last-child)::after {
    display: none;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-content p {
    font-size: 14px;
  }
  
  .starter-faq {
    padding: 24px;
  }
  
  .starter-faq-title {
    font-size: 20px;
  }
  
  .starter-faq-item {
    padding: 20px;
  }
  
  .guide-cta {
    padding: 24px;
  }
  
  .guide-cta p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .guide-badge {
    font-size: 10px;
    padding: 6px 14px;
  }
  
  .guide-title {
    font-size: 22px;
  }
  
  .block-icon {
    font-size: 28px;
  }
  
  .guide-block {
    padding: 16px;
  }
  
  .bonus-terms-box {
    padding: 16px;
  }
  
  .bonus-terms-box li {
    font-size: 12px;
  }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guide-block {
  animation: fadeInUp 0.5s ease forwards;
}

.guide-block:nth-child(1) { animation-delay: 0s; }
.guide-block:nth-child(2) { animation-delay: 0.1s; }
.guide-block:nth-child(3) { animation-delay: 0.2s; }
.guide-block:nth-child(4) { animation-delay: 0.3s; }
.guide-block:nth-child(5) { animation-delay: 0.4s; }

.guide-step {
  animation: fadeInUp 0.5s ease forwards;
}

.guide-step:nth-child(1) { animation-delay: 0s; }
.guide-step:nth-child(2) { animation-delay: 0.15s; }
.guide-step:nth-child(3) { animation-delay: 0.3s; }
.guide-step:nth-child(4) { animation-delay: 0.45s; }
.guide-step:nth-child(5) { animation-delay: 0.6s; }

/* === DARK MODE ENHANCEMENTS === */
.guide-section.casino-guide .guide-block:hover {
  border-color: rgba(199, 36, 177, 0.3);
}

.guide-section.casino-guide .block-icon {
  filter: drop-shadow(0 0 8px rgba(199, 36, 177, 0.5));
}

/* === TYPOGRAPHY ENHANCEMENTS === */
.guide-block-content p strong {
  color: var(--text-primary, #0F1115);
  font-weight: 600;
}

.guide-block.dark .guide-block-content p strong {
  color: #FFFFFF;
}

.guide-block-content p a {
  color: #E4002B;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-block-content p a:hover {
  color: #FF2D55;
}

.guide-block.dark .guide-block-content p a {
  color: #00D4FF;
}

/* === SCROLL REVEAL === */
.guide-block,
.guide-step,
.starter-faq-item {
  opacity: 1;
}

.guide-block.revealed,
.guide-step.revealed,
.starter-faq-item.revealed {
  animation: fadeInUp 0.6s ease forwards;
}

/* === PRINT STYLES === */
@media print {
  .guide-section {
    padding: 20px 0;
    background: #FFFFFF !important;
  }
  
  .guide-block,
  .guide-step {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #E0E4EA !important;
  }
  
  .guide-cta {
    display: none;
  }
}