/* ============================================
   ZOCCER CASINO DE - STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
  /* Brand Colors */
  --zoccer-primary: #E4002B;
  --zoccer-secondary: #FF2D55;
  --zoccer-accent: #FF6B35;
  --zoccer-gradient: linear-gradient(135deg, #E4002B 0%, #FF2D55 50%, #FF6B35 100%);
  --zoccer-glow: rgba(228, 0, 43, 0.4);
  
  /* Accent Colors */
  --cyan: #00D4FF;
  --teal: #00BFA6;
  --purple: #6E3AFF;
  --gold: #FFD700;
  
  /* Background Colors */
  --bg-dark: #0A0A12;
  --bg-darker: #050508;
  --bg-card: #12121C;
  --bg-card-hover: #1A1A28;
  --bg-input: #1E1E2E;
  
  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  /* Border */
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  
  /* Spacing */
  --container-width: 1280px;
  --section-padding: 100px;
  --header-height: 72px;
  
  /* Animation */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.text-gradient {
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(228, 0, 43, 0.15);
  border: 1px solid rgba(228, 0, 43, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--zoccer-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

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

.btn-primary {
  background: var(--zoccer-gradient);
  color: white;
  box-shadow: 0 4px 20px var(--zoccer-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--zoccer-glow);
}

.btn-secondary {
  background: var(--bg-input);
  color: white;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
}

.btn-cta {
  background: var(--zoccer-gradient);
  color: white;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 30px var(--zoccer-glow);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px var(--zoccer-glow);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn-play {
  background: var(--zoccer-gradient);
  color: white;
  padding: 10px 24px;
  font-size: 13px;
}

.btn-demo {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  font-size: 12px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 18, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 10, 18, 0.98);
}

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

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.logo-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: white;
  background: rgba(228, 0, 43, 0.15);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 999;
  display: none;
}

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

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

.mobile-nav-link {
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 40px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

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

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 0, 43, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(100px);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

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

.hero-title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-bonus {
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.bonus-card {
  display: inline-block;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.2) 0%, rgba(110, 58, 255, 0.1) 100%);
  border: 1px solid rgba(228, 0, 43, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 48px;
}

.bonus-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--zoccer-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.bonus-value {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
}

.bonus-value span {
  color: var(--gold);
}

.bonus-extra {
  font-size: 16px;
  color: var(--cyan);
  font-weight: 600;
  margin-top: 4px;
}

.hero-cta {
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-terms {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  animation: fadeInUp 0.6s ease 0.5s backwards;
}

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

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 900;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero-cards {
  position: relative;
  width: 300px;
  height: 300px;
}

.floating-card {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: 0;
  animation-delay: 1s;
}

.card-3 {
  bottom: 30%;
  right: 0;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

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

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.trust-icon {
  font-size: 28px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 14px;
  font-weight: 700;
}

.trust-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   GAME CATEGORIES
   ============================================ */
.games-section {
  padding: var(--section-padding) 0;
}

.game-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.category-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.1) 0%, var(--bg-card) 50%);
}

.category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--zoccer-gradient);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.category-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.category-count {
  font-size: 14px;
  color: var(--zoccer-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.category-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.category-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.category-features span {
  padding: 6px 12px;
  background: rgba(228, 0, 43, 0.1);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--zoccer-secondary);
}

/* ============================================
   POPULAR GAMES
   ============================================ */
.popular-section {
  padding: 0 0 var(--section-padding);
}

.game-filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: white;
  border-color: var(--border-hover);
}

.filter-btn.active {
  color: white;
  background: var(--zoccer-gradient);
  border-color: transparent;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

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

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

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

.game-image {
  position: relative;
  height: 140px;
  background: linear-gradient(135deg, var(--bg-input) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-emoji {
  font-size: 48px;
}

.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: 8px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 2;
}

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

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

.game-badge.live {
  background: var(--zoccer-primary);
  animation: pulse-badge 1.5s ease-in-out infinite;
}

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

.game-info {
  padding: 14px;
}

.game-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.games-cta {
  text-align: center;
}

/* ============================================
   LIVE CASINO
   ============================================ */
.live-casino-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.live-casino-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.live-casino-content .section-title {
  font-size: clamp(28px, 4vw, 40px);
}

.live-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.live-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.live-feature-icon {
  font-size: 24px;
}

.live-feature div {
  display: flex;
  flex-direction: column;
}

.live-feature strong {
  font-size: 14px;
  font-weight: 700;
}

.live-feature span {
  font-size: 12px;
  color: var(--text-muted);
}

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

.live-table-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.live-table-card:hover {
  transform: translateY(-4px);
  border-color: var(--zoccer-primary);
}

.live-table-card.featured {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.15) 0%, var(--bg-card) 100%);
  border-color: rgba(228, 0, 43, 0.3);
}

.live-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--zoccer-primary);
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--zoccer-primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

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

.table-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.live-table-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.live-table-card p {
  font-size: 13px;
  color: var(--zoccer-secondary);
  margin-bottom: 8px;
}

.table-limits {
  font-size: 12px;
  color: var(--text-muted);
}

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

.sports-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.sport-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-base);
}

.sport-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.sport-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.sport-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.sport-card p {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sport-events {
  font-size: 11px;
  color: var(--zoccer-secondary);
  font-weight: 600;
}

.sports-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.sports-feature {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.sports-feature .feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.sports-feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sports-feature p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.sports-cta {
  text-align: center;
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================================
   PROMOTIONS
   ============================================ */
.promotions-section {
  padding: var(--section-padding) 0;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.promo-card.featured {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
  border-color: rgba(228, 0, 43, 0.3);
}

.promo-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--zoccer-gradient);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.promo-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.promo-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-value {
  font-size: 24px;
  font-weight: 900;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.promo-card.featured .promo-value {
  font-size: 28px;
}

.promo-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.promo-terms {
  list-style: none;
  margin-bottom: 20px;
}

.promo-terms li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.promo-terms li:last-child {
  border-bottom: none;
}

/* ============================================
   VIP SECTION
   ============================================ */
.vip-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--bg-darker) 0%, #1a1028 50%, var(--bg-darker) 100%);
  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.08) 0%, transparent 50%);
}

.vip-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vip-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.vip-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
}

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

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

.vip-tier {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  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: 12px;
}

.vip-tier h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.vip-tier p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   JACKPOT SECTION
   ============================================ */
.jackpot-section {
  padding: var(--section-padding) 0;
  background: var(--bg-card);
}

.jackpot-header {
  text-align: center;
  margin-bottom: 40px;
}

.jackpot-header p {
  color: var(--text-secondary);
  margin-top: 8px;
}

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

.jackpot-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
}

.jackpot-card.hot {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.15) 0%, var(--bg-dark) 100%);
  border-color: rgba(228, 0, 43, 0.3);
}

.jackpot-hot-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--zoccer-primary);
  border-radius: var(--radius-full);
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 12px;
}

.jackpot-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.jackpot-amount {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}

.jackpot-provider {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   PROVIDERS
   ============================================ */
.providers-section {
  padding: var(--section-padding) 0;
}

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

.provider-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.provider-logo:hover {
  border-color: var(--cyan);
  color: white;
}

.provider-logo:last-child {
  background: var(--zoccer-gradient);
  border: none;
  color: white;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  padding: var(--section-padding) 0;
  background: var(--bg-darker);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   PAYMENTS
   ============================================ */
.payments-section {
  padding: var(--section-padding) 0;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

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

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

.payment-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.payment-card h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

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

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

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-align: left;
  transition: background var(--transition-fast);
}

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

.faq-question svg {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.responsible-section {
  padding: 60px 0;
}

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

.responsible-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.responsible-content {
  flex: 1;
}

.responsible-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.responsible-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

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

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

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

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

.final-cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 12px;
}

.final-cta-text {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.final-cta-bonus {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.final-cta-bonus .bonus-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.final-cta-bonus .bonus-amount {
  font-size: 20px;
  font-weight: 800;
}

.final-cta-section .btn-cta {
  background: white;
  color: var(--zoccer-primary);
}

.final-cta-terms {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-darker);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

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

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}

.footer-licenses {
  display: flex;
  gap: 16px;
}

.license-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  text-align: center;
}

.license-badge span {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.license-badge small {
  font-size: 10px;
  color: var(--text-muted);
}

.footer-payments {
  display: flex;
  gap: 12px;
}

.footer-payments span {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-bottom {
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.7;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .game-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-card.featured {
    grid-column: span 1;
  }
  
  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .sports-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jackpot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payments-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .providers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  
  .header-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .live-casino-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .vip-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .promo-card.featured {
    grid-row: span 1;
    grid-column: span 2;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --header-height: 64px;
  }
  
  .hero-visual {
    display: none;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .hero-stat {
    width: calc(50% - 12px);
  }
  
  .trust-grid {
    flex-direction: column;
    gap: 16px;
  }
  
  .game-categories,
  .games-grid,
  .why-grid,
  .promos-grid {
    grid-template-columns: 1fr;
  }
  
  .promo-card.featured {
    grid-column: span 1;
  }
  
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sports-features {
    grid-template-columns: 1fr;
  }
  
  .live-casino-tables,
  .vip-tiers,
  .vip-benefits {
    grid-template-columns: 1fr;
  }
  
  .jackpot-grid,
  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .responsible-card {
    flex-direction: column;
    text-align: center;
  }
  
  .responsible-links {
    justify-content: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer-middle {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-licenses,
  .footer-payments {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .bonus-card {
    padding: 20px 24px;
  }
  
  .sports-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* About Section */
.about-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content .section-title {
  font-size: clamp(28px, 4vw, 40px);
}

.about-text {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.about-highlight-value {
  font-size: 28px;
  font-weight: 900;
  background: var(--zoccer-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.about-highlight-label {
  font-size: 12px;
  color: var(--text-muted);
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--zoccer-gradient);
}

.about-card-logo {
  width: 80px;
  height: 80px;
  background: var(--zoccer-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transform: skewX(-6deg);
  box-shadow: 0 8px 32px var(--zoccer-glow);
}

.about-card-logo svg {
  transform: skewX(6deg);
  color: white;
  width: 40px;
  height: 40px;
}

.about-card-title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}

.about-card-tagline {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-card-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.about-card-stat {
  text-align: center;
}

.about-card-stat span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan);
}

.about-card-stat small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Slots Guide Section */
.slots-guide-section {
  padding: var(--section-padding) 0;
  background: var(--bg-card);
}

.slots-guide-intro {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.slots-guide-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.slots-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.slot-type-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}

.slot-type-card:hover {
  border-color: var(--zoccer-primary);
  transform: translateY(-4px);
}

.slot-type-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.slot-type-icon {
  font-size: 40px;
}

.slot-type-title {
  font-size: 20px;
  font-weight: 700;
}

.slot-type-count {
  font-size: 13px;
  color: var(--zoccer-secondary);
  font-weight: 600;
}

.slot-type-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.slot-type-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-type-features span {
  padding: 6px 12px;
  background: rgba(228, 0, 43, 0.1);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--zoccer-secondary);
}

.slots-tips {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.1) 0%, rgba(110, 58, 255, 0.05) 100%);
  border: 1px solid rgba(228, 0, 43, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.slots-tips-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slots-tips-title span {
  font-size: 28px;
}

.slots-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.slots-tip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.slots-tip-number {
  width: 32px;
  height: 32px;
  background: var(--zoccer-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.slots-tip h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.slots-tip p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Sportwetten Guide Section */
.betting-guide-section {
  padding: var(--section-padding) 0;
}

.betting-guide-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.betting-guide-main h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 32px;
}

.betting-guide-main h3:first-child {
  margin-top: 0;
}

.betting-guide-main p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.betting-guide-main ul {
  list-style: none;
  margin-bottom: 24px;
}

.betting-guide-main ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.betting-guide-main ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.betting-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.betting-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.betting-sidebar-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.betting-sidebar-card h4 span {
  font-size: 20px;
}

.betting-odd-types {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.odd-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
}

.odd-type-name {
  font-size: 13px;
  font-weight: 600;
}

.odd-type-example {
  font-size: 13px;
  color: var(--cyan);
  font-weight: 700;
}

.betting-quick-tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.quick-tip-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* Security Section */
.security-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.security-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.security-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-base);
}

.security-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.security-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.security-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.security-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.security-certifications {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

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

.security-cert-header h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.security-cert-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.certification-item {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--transition-fast);
}

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

.certification-item span {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.certification-item small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Payment Guide Section */
.payment-guide-section {
  padding: var(--section-padding) 0;
  background: var(--bg-card);
}

.payment-guide-intro {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.payment-guide-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.payment-methods-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.payment-method-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}

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

.payment-method-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.payment-method-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-input);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.payment-method-name {
  font-size: 18px;
  font-weight: 700;
}

.payment-method-type {
  font-size: 12px;
  color: var(--text-muted);
}

.payment-method-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.payment-method-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.payment-detail {
  text-align: center;
}

.payment-detail-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.payment-detail-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}

.payment-note {
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(0, 191, 166, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.payment-note-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.payment-note-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.payment-note-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* German Market Section */
.german-market-section {
  padding: var(--section-padding) 0;
}

.german-market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.german-market-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 32px;
}

.german-market-content h3:first-child {
  margin-top: 0;
}

.german-market-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.german-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.german-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.german-feature-icon {
  font-size: 24px;
}

.german-feature-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.german-feature-text span {
  font-size: 13px;
  color: var(--text-secondary);
}

.german-market-visual {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.german-info-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 20px;
}

.german-info-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.german-info-card h4 span {
  font-size: 24px;
}

.german-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.german-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.german-info-item:last-child {
  border-bottom: none;
}

.german-info-item span:first-child {
  font-size: 14px;
  color: var(--text-secondary);
}

.german-info-item span:last-child {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}

.german-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.german-city {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--bg-input);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
}

.german-city span {
  font-size: 20px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .about-grid,
  .betting-guide-content,
  .german-market-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .slots-types-grid,
  .payment-methods-detailed {
    grid-template-columns: 1fr;
  }
  
  .slots-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .betting-sidebar,
  .german-market-visual {
    position: static;
  }
}

@media (max-width: 768px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .slots-tips-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payment-method-details {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .german-cities {
    grid-template-columns: 1fr;
  }
}