:root {
  --primary: #00D4FF;
  --primary-glow: rgba(0, 212, 255, 0.4);
  --secondary: #00B8D4;
  --accent: #00D4FF;
  --accent-glow: rgba(0, 212, 255, 0.3);
  --bg-from: #0F0F0F;
  --bg-via: #1A1A1A;
  --bg-to: #0A0A0A;
  --card-bg: #2A2A2A;
  --card-bg-light: #333333;
  --card-bg-dark: #1F1F1F;
  --card-border: rgba(0, 212, 255, 0.15);
  --text-light: #FFFFFF;
  --text-muted: #E0E0E0;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-light: rgba(255, 255, 255, 0.05);
  --shadow-dark: rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 400;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 184, 212, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-from) 0%, var(--bg-via) 50%, var(--bg-to) 100%);
  background-attachment: fixed;
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(0, 212, 255, 0.1) inset;
  transition: all 0.3s var(--transition);
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 212, 255, 0.3) 50%, 
    transparent 100%);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: gradientShift 3s ease infinite;
  filter: drop-shadow(0 0 15px var(--primary-glow));
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -3px -3px 6px var(--shadow-light),
    0 0 25px var(--primary-glow),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light),
    0 0 35px var(--primary-glow),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s var(--transition);
  position: relative;
  padding: 8px 16px;
  border-radius: 12px;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: transform 0.3s var(--transition);
  border-radius: 2px;
}

nav a:hover {
  color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-2px);
}

nav a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.age-badge {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 28px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 184, 212, 0.12) 0%, transparent 50%);
  animation: pulse 6s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
  animation: pulse 8s ease-in-out infinite reverse;
  z-index: 0;
}

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

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(220, 38, 38, 0.15);
  border: 2px solid rgba(220, 38, 38, 0.4);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 40px;
  animation: float 4s ease-in-out infinite;
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.3),
    -2px -2px 4px rgba(255, 255, 255, 0.03),
    0 0 20px rgba(220, 38, 38, 0.3);
  backdrop-filter: blur(10px);
}

.hero-badge-icon {
  width: 30px;
  height: 30px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px var(--primary-glow));
  animation: gradientShift 4s ease infinite;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  padding: 18px 48px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light),
    0 0 25px var(--primary-glow),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  border: none;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light),
    0 0 40px var(--primary-glow),
    inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -2px -2px 4px var(--shadow-light);
}

.btn-secondary {
  background: var(--card-bg);
  color: var(--primary);
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 
    inset 2px 2px 4px var(--shadow-dark),
    inset -2px -2px 4px var(--shadow-light);
}

.btn-secondary:hover {
  background: var(--card-bg-light);
  transform: translateY(-2px);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -2px -2px 4px var(--shadow-light);
}

.disclaimer-text {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.8;
}

section {
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px var(--primary-glow));
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    10px 10px 20px var(--shadow-dark),
    -5px -5px 10px var(--shadow-light),
    inset 0 1px 2px rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
  pointer-events: none;
}

.game-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 184, 212, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
  pointer-events: none;
}

.game-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 
    16px 16px 32px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light),
    0 0 40px var(--primary-glow),
    inset 0 1px 3px rgba(255, 255, 255, 0.05);
}

.game-card:hover::before,
.game-card:hover::after {
  opacity: 1;
}

.game-card:active {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

.game-image-container {
  width: 100%;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 
    inset 6px 6px 12px var(--shadow-dark),
    inset -3px -3px 6px var(--shadow-light),
    0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.4s var(--transition);
}

.game-card:hover .game-image-container {
  transform: scale(1.03);
  box-shadow: 
    inset 8px 8px 16px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light),
    0 6px 12px rgba(0, 0, 0, 0.3);
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-image-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  font-size: 18px;
}

.game-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.game-category {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.game-title {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--transition);
}

.game-card:hover .game-title {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.play-demo-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border: none;
  border-radius: 18px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -3px -3px 6px var(--shadow-light),
    0 0 20px var(--primary-glow),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.play-demo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.play-demo-btn:hover::before {
  left: 100%;
}

.play-demo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light),
    0 0 35px var(--primary-glow),
    inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.play-demo-btn:active {
  transform: translateY(-1px);
  box-shadow: 
    inset 3px 3px 6px var(--shadow-dark),
    inset -2px -2px 4px var(--shadow-light);
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 26px;
  padding: 36px;
  text-align: center;
  box-shadow: 
    10px 10px 20px var(--shadow-dark),
    -5px -5px 10px var(--shadow-light),
    inset 0 1px 2px rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 
    16px 16px 32px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light),
    0 0 35px var(--primary-glow),
    inset 0 1px 3px rgba(255, 255, 255, 0.05);
}

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

.feature-icon {
  font-size: 56px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.4s var(--transition);
  display: inline-block;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(0, 212, 255, 0.4));
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light),
    0 0 25px var(--primary-glow),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: rotate 3s linear infinite;
}

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

.step-card:hover .step-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light),
    0 0 35px var(--primary-glow),
    inset 0 2px 5px rgba(255, 255, 255, 0.25);
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-light);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--transition);
}

.step-card:hover h3 {
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary-glow);
}

.step-card p {
  color: var(--text-muted);
}

.responsible-gaming {
  background: var(--card-bg);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

.responsible-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -3px -3px 6px var(--shadow-light),
    0 0 20px rgba(220, 38, 38, 0.6);
}

.responsible-gaming h2 {
  color: var(--text-light);
  margin-bottom: 20px;
}

.responsible-gaming p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.responsible-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.responsible-links a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 22px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light),
    inset 0 1px 2px rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.faq-item:hover {
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light),
    0 0 25px var(--primary-glow);
  transform: translateY(-4px) translateX(4px);
  border-color: rgba(0, 212, 255, 0.25);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item h3 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

footer {
  background: var(--bg-via);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 60px 20px 30px;
  margin-top: 80px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p, .footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: all 0.25s var(--transition);
}

.footer-section a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-badge {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light),
    0 0 25px rgba(220, 38, 38, 0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 14px;
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.age-modal.active {
  opacity: 1;
  visibility: visible;
}

.age-modal-content {
  background: var(--card-bg);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 28px;
  padding: 50px;
  max-width: 500px;
  text-align: center;
  box-shadow: 
    20px 20px 40px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light),
    0 0 50px rgba(0, 0, 0, 0.8);
  animation: slideUp 0.5s var(--transition);
}

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

.age-modal-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light),
    0 0 30px rgba(220, 38, 38, 0.6);
}

.age-modal h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.age-modal p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.age-modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.game-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.game-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 24px;
  width: 95%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 
    20px 20px 40px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light),
    0 0 50px rgba(0, 0, 0, 0.8);
}

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

.modal-header h2 {
  color: var(--text-light);
  font-size: 24px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 32px;
  cursor: pointer;
  transition: all 0.25s var(--transition);
}

.close-btn:hover {
  color: var(--primary);
  transform: scale(1.2);
}

#game-iframe {
  flex: 1;
  border: none;
  width: 100%;
}

.demo-unavailable {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
}

.filter-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 28px;
  background: var(--card-bg);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 25px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--transition);
  font-weight: 600;
  box-shadow: 
    inset 2px 2px 4px var(--shadow-dark),
    inset -2px -2px 4px var(--shadow-light);
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -2px -2px 4px var(--shadow-light),
    0 0 15px var(--primary-glow);
}

.page-header {
  padding: 120px 20px 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
  text-shadow: 0 0 30px var(--primary-glow);
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.content-section h2 {
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-section h3 {
  color: var(--text-light);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
}

.content-section p, .content-section li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-section ul {
  margin-left: 30px;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--bg-via);
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    left: 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}