:root {
  --primary-color: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary-color: #4ecdc4;
  --accent-color: #d5b400;
  
  --bg-primary: linear-gradient(135deg, #0a0e13 0%, #1a202c 30%, #2d3748 70%, #4a5568 100%);
  --bg-secondary: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #4a5568 100%);
  --bg-tertiary: linear-gradient(135deg, #252d3a 0%, #2d3748 50%, #4a5568 100%);
  --bg-card: rgba(26, 35, 50, 0.95);
  --bg-pattern: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="circuit-board-dark" width="40" height="40" patternUnits="userSpaceOnUse"><g fill="none" stroke="rgba(255,107,53,0.25)" stroke-width="0.8"><path d="M0,20 L20,20 L20,0"/><path d="M20,20 L40,20 L40,40"/><circle cx="20" cy="20" r="2" fill="rgba(78,205,196,0.4)"/><rect x="18" y="18" width="4" height="4" fill="rgba(255,215,0,0.3)"/></g></pattern></defs><rect width="200" height="200" fill="url(%23circuit-board-dark)"/></svg>');
  
  --text-primary: #ffffff;
  --text-secondary: #b8c5d1;
  --text-muted: #8b9bb1;
  
  --border-color: rgba(255, 255, 255, 0.2);
  --shadow-light: rgba(255, 107, 53, 0.4);
  --shadow-dark: rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 35px rgba(255, 107, 53, 0.5);
  
  --gradient-primary: linear-gradient(135deg, #ff6b35, #f7931e, #ffb347);
  --gradient-secondary: linear-gradient(135deg, #4ecdc4, #44a08d, #26d0ce);
  --gradient-hero: linear-gradient(135deg, 
    rgba(10, 14, 19, 0.9) 0%, 
    rgba(26, 32, 44, 0.8) 25%, 
    rgba(45, 55, 72, 0.7) 50%, 
    rgba(26, 32, 44, 0.8) 75%, 
    rgba(74, 85, 104, 0.6) 100%);
  --gradient-accent: linear-gradient(45deg, #ffd700, #ffed4e, #fff59d);
}

[data-theme="light"] {
  --bg-primary: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  --bg-secondary: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  --bg-tertiary: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-pattern: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="elegant-light" width="40" height="40" patternUnits="userSpaceOnUse"><g fill="none" stroke="rgba(100,116,139,0.15)" stroke-width="1"><path d="M0,20 L20,20 L20,0"/><path d="M20,20 L40,20 L40,40"/><circle cx="20" cy="20" r="2" fill="rgba(255,107,53,0.2)"/></g></pattern></defs><rect width="200" height="200" fill="url(%23elegant-light)"/></svg>');
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  
  --border-color: rgba(100, 116, 139, 0.2);
  --shadow-light: rgba(255, 107, 53, 0.3);
  --shadow-dark: rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 25px rgba(255, 107, 53, 0.4);
  
  --gradient-hero: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.08) 0%, 
    rgba(100, 116, 139, 0.05) 50%, 
    rgba(255, 107, 53, 0.06) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-pattern);
  opacity: 0.5;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    var(--gradient-hero),
    linear-gradient(30deg, transparent 30%, rgba(255, 107, 53, 0.08) 40%, transparent 50%),
    linear-gradient(150deg, transparent 30%, rgba(78, 205, 196, 0.08) 40%, transparent 50%),
    linear-gradient(90deg, transparent 40%, rgba(255, 215, 0, 0.06) 50%, transparent 60%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="tech-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><g fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="1"><path d="M0,40 L40,40 M40,0 L40,80 M40,40 L80,40"/><circle cx="40" cy="40" r="3" fill="rgba(78,205,196,0.2)"/><rect x="35" y="35" width="10" height="10" fill="none" stroke="rgba(255,215,0,0.15)" stroke-width="0.5"/></g><g fill="none" stroke="rgba(78,205,196,0.08)" stroke-width="0.5"><path d="M20,20 L60,20 L60,60 L20,60 Z"/><path d="M20,20 L60,60 M60,20 L20,60"/></g></pattern></defs><rect width="400" height="400" fill="url(%23tech-pattern)"/></svg>');
  z-index: -1;
  animation: heroTechAnimation 30s ease-in-out infinite;

  pointer-events: none;

}

@keyframes backgroundShift {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    opacity: 0.8;
  }
  25% { 
    transform: scale(1.05) rotate(0.5deg); 
    opacity: 0.9;
  }
  50% { 
    transform: scale(0.95) rotate(-0.5deg); 
    opacity: 0.7;
  }
  75% { 
    transform: scale(1.02) rotate(0.3deg); 
    opacity: 0.85;
  }
}

@keyframes backgroundShift {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    opacity: 0.8;
  }
  25% { 
    transform: scale(1.05) rotate(0.5deg); 
    opacity: 0.9;
  }
  50% { 
    transform: scale(0.95) rotate(-0.5deg); 
    opacity: 0.7;
  }
  75% { 
    transform: scale(1.02) rotate(0.3deg); 
    opacity: 0.85;
  }
}

.gaming-characters {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

[data-theme="light"] .header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

[data-theme="light"] body::after {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(100, 116, 139, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(255, 107, 53, 0.10) 0%, transparent 50%),
    linear-gradient(45deg, transparent 45%, rgba(100, 116, 139, 0.04) 50%, transparent 55%);
}

[data-theme="light"] .feature-card,
[data-theme="light"] .game-card,
[data-theme="light"] .service-item,
[data-theme="light"] .trust-badge {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(100, 116, 139, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .feature-card:hover,
[data-theme="light"] .game-card:hover,
[data-theme="light"] .service-item:hover,
[data-theme="light"] .trust-badge:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
  transform: translateY(-5px);
}

[data-theme="light"] .feature-card__icon, {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  line-height: 1.2;
}

.nav__link--user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}


.nav__link--user:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.nav__link--logout {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.section__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

[data-theme="light"] .header {
  background: rgba(248, 250, 252, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
   display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo__icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  overflow: hidden;
}

.logo__icon::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.3) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
  border-radius: 4px;
  z-index: 1;
}

.logo__icon::after {
  content: 'G';
  position: absolute;
  font-size: 20px;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
  font-family: 'Orbitron', monospace;
}

.logo__icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

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

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.theme-toggle:hover {
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


@keyframes heroTechAnimation {
  0%, 100% { 
    transform: translateX(0) translateY(0) scale(1); 
    filter: hue-rotate(0deg);
  }
  20% { 
    transform: translateX(-15px) translateY(-8px) scale(1.02); 
    filter: hue-rotate(5deg);
  }
  40% { 
    transform: translateX(10px) translateY(12px) scale(0.98); 
    filter: hue-rotate(-3deg);
  }
  60% { 
    transform: translateX(-8px) translateY(15px) scale(1.01); 
    filter: hue-rotate(8deg);
  }
  80% { 
    transform: translateX(12px) translateY(-10px) scale(0.99); 
    filter: hue-rotate(-5deg);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 0deg at 50% 50%, 
      transparent 0deg, 
      rgba(255, 107, 53, 0.05) 60deg,
      rgba(78, 205, 196, 0.04) 120deg,
      transparent 180deg, 
      rgba(255, 215, 0, 0.05) 240deg,
      rgba(255, 107, 53, 0.03) 300deg,
      transparent 360deg);
  animation: techRotate 40s linear infinite;
  z-index: -1;
}

@keyframes techRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

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

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Orbitron', monospace;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero__cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  margin-bottom: 2rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-muted);
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-indicator {
  width: 30px;
  height: 30px;
  margin: 0.5rem auto;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

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

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-light);
}

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

.btn--secondary:hover {
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.btn--full {
  width: 100%;
}

.features {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
  transition: transform 0.6s ease;
  transform: translateX(-100%) translateY(-100%);
}

.feature-card:hover::before {
  transform: translateX(0) translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow), 0 15px 40px var(--shadow-dark);
  border-color: var(--primary-color);
}

.feature-card__icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.trust-badges {
  padding: 4rem 0;
  background: var(--bg-tertiary);
  position: relative;
}

.trust-badges::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(255, 107, 53, 0.02) 49%, rgba(255, 107, 53, 0.02) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(78, 205, 196, 0.02) 49%, rgba(78, 205, 196, 0.02) 51%, transparent 52%);
  z-index: 0;
  pointer-events: none;
}

.trust-badges .container {
  position: relative;
  z-index: 1;
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 15px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  text-align: left;
  width: 100%;
}

.trust-badge:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.trust-badge__icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.trust-badge__content h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: 'Orbitron', monospace;
}

.trust-badge__content p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
}

.feature-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card__text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.games {
  padding: 6rem 0;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.game-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.game-card:hover::before {
  left: 100%;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-glow), 0 20px 40px var(--shadow-dark);
  border-color: var(--accent-color);
}

.game-card__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.game-card__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.3) 0%, transparent 50%);
}


.game-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

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

.game-card__overlay .btn {
     z-index: 10;
    position: relative;
    pointer-events: all !important;
    cursor: pointer !important;
}


.game-card__content {
  padding: 1.5rem;
}

.game-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.game-card__desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.game-card__price {
  color: var(--text-muted);
  font-weight: 600;
}

.game-card__price span {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.btn--compact {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}


.services {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.service-item__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.service-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.payments {
  padding: 6rem 0;
}

.payments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.payment-method:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px var(--shadow-dark);
}

.payment-method__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-method span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.contact {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__methods {
  margin-top: 2rem;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.contact__method-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
}

.contact__method h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact__method a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact__method p {
  color: var(--text-secondary);
  margin: 0;
}

.contact__text {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  backdrop-filter: blur(20px);
}

.contact__description {
  line-height: 1.8;
}

.contact__description p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  text-align: justify;
}

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

b, strong {
  color: var(--primary-color);
  font-weight: 600;
}

.footer {
  background: var(--bg-tertiary);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__brand p {
  color: var(--text-secondary);
  margin-top: 1rem;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer__column h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer__column ul {
  list-style: none;
}

.footer__column ul li {
  margin-bottom: 0.5rem;
}

.footer__column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__column ul li a:hover {
  color: var(--primary-color);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 20px;
}

.contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.footer__payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  max-width: 180px;
}

.payment-icon {
  width: 50px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.payment-icon:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (max-width: 768px) {
	
	.game-card__overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.4);
        position: absolute;
        bottom: 0;
        top: auto;
        padding: 1rem;
    }
	
  .nav__menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

	.nav__toggle span {
margin-right: 3.5rem;
}

	
  .hero__title {
    font-size: 2.5rem;
  }
  
  .section__title {
    font-size: 2rem;
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .hero__cta .btn {
    width: 100%;
    max-width: 300px;
    margin: 0;
  }
  
  .hero__scroll {
    bottom: 1rem;
  }
  
  .contact__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer__payments {
    grid-template-columns: repeat(6, 1fr);
    max-width: 100%;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
    width: 100%;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .features__grid,
  .games__grid {
    grid-template-columns: 1fr;
  }
  
  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .trust-badges__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .payments__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

   .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            padding: 1.5rem;
            z-index: 9999;
            backdrop-filter: blur(20px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px var(--shadow-dark);
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-banner.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .cookie-banner__content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }
        
        .cookie-banner__text {
            flex: 1;
        }
        
        .cookie-banner__title {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .cookie-banner__description {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .cookie-banner__description a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .cookie-banner__description a:hover {
            text-decoration: underline;
        }
        
        .cookie-banner__actions {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-shrink: 0;
        }
        
        .cookie-btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        
        .cookie-btn--accept {
            background: var(--gradient-primary);
            color: white;
        }
        
        .cookie-btn--accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        
        .cookie-btn--decline {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }
        
        .cookie-btn--decline:hover {
            background: rgba(255, 107, 53, 0.1);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        
        .cookie-btn--customize {
            background: var(--bg-tertiary);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }
        
        .cookie-btn--customize:hover {
            background: var(--bg-secondary);
            border-color: var(--primary-color);
        }
        
        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 1rem;
        }
        
        .cookie-modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .cookie-modal__content {
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px var(--shadow-dark);
        }
        
        .cookie-modal__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .cookie-modal__title {
            color: var(--text-primary);
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            margin: 0;
        }
        
        .cookie-modal__close {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .cookie-modal__close:hover {
            background: rgba(255, 107, 53, 0.1);
            color: var(--primary-color);
        }
        
        .cookie-category {
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
        }
        
        .cookie-category__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .cookie-category__title {
            color: var(--text-primary);
            font-weight: 600;
            margin: 0;
        }
        
        .cookie-category__description {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .cookie-toggle {
            position: relative;
            width: 50px;
            height: 26px;
            background: var(--border-color);
            border-radius: 13px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .cookie-toggle.active {
            background: var(--primary-color);
        }
        
        .cookie-toggle::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .cookie-toggle.active::after {
            transform: translateX(24px);
        }
        
        .cookie-toggle.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .cookie-modal__actions {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            margin-top: 2rem;
        }
        
        @media (max-width: 768px) {
            .cookie-banner {
                bottom: 10px;
                left: 10px;
                right: 10px;
                padding: 1rem;
            }
            
            .cookie-banner__content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .cookie-banner__actions {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .cookie-btn {
                font-size: 0.8rem;
                padding: 0.6rem 1rem;
            }
            
            .cookie-modal__content {
                padding: 1.5rem;
                margin: 0.5rem;
            }
            
            .cookie-modal__actions {
                flex-direction: column;
            }
        }