:root {
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --secondary: #8B5CF6;
  --accent: #06D6A0;
  --accent-dark: #059669;
  --light: #F8FAFC;
  --dark: #0F172A;
  --text: #1E293B;
  --text-light: #64748B;
  --gray-light: #F1F5F9;
  --gray-medium: #E2E8F0;
  --purple-light: #EDE9FE;
  --purple-dark: #7C3AED;
  --gray-dark: #334155;
  --gray-darker: #0F172A;
  --neon-blue: #00D4FF;
  --neon-purple: #A855F7;
  --neon-green: #10B981;
  --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --gradient-dark: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --gradient-neon: linear-gradient(135deg, #00D4FF 0%, #A855F7 100%);
  --gradient-tech: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --shadow: 0 4px 6px rgba(99, 102, 241, 0.1);
  --shadow-lg: 0 10px 25px rgba(99, 102, 241, 0.15);
  --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3);
  --shadow-purple: 0 4px 6px rgba(139, 92, 246, 0.2);
}

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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 100%;
  max-width: 100vw;
}

body.loaded {
  opacity: 1;
}

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


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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn::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:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-glow {
  box-shadow: var(--shadow-neon);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

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

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

.btn-neon {
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.btn-neon:hover {
  background: var(--neon-blue);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background: var(--gray-light);
}

.section-dark {
  background: var(--gradient-tech);
  color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-tech);
  color: var(--light);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px, 40px 40px;
  animation: float 20s ease-in-out infinite;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.title-subtitle {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  color: var(--neon-blue);
  font-weight: 400;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--light);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
  color: var(--neon-blue);
}

.floating-card span {
  font-size: 0.9rem;
  font-weight: 600;
}

.card-1 {
  top: -50px;
  right: 100px;
  animation-delay: 0s;
}

.card-2 {
  top: 50px;
  right: 200px;
  animation-delay: 2s;
}

.card-3 {
  top: 150px;
  right: 50px;
  animation-delay: 4s;
}

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

.feature-card {
  background: var(--light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-medium);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--gradient);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.feature-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Technology Section */
.tech-content {
  max-width: 500px;
}

.tech-description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0.9;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-feature i {
  font-size: 1.5rem;
  color: var(--neon-blue);
  min-width: 30px;
}

.tech-feature h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tech-feature p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.tech-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.neural-network {
  position: relative;
  width: 300px;
  height: 300px;
}

.node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.node-1 { top: 50px; left: 50px; }
.node-2 { top: 50px; right: 50px; }
.node-3 { bottom: 50px; left: 50px; }
.node-4 { bottom: 50px; right: 50px; }
.node-5 { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.connection {
  position: absolute;
  height: 2px;
  background: var(--neon-purple);
  box-shadow: 0 0 5px rgba(168, 85, 247, 0.5);
}

.conn-1 {
  top: 60px;
  left: 70px;
  width: 160px;
  transform: rotate(45deg);
}

.conn-2 {
  top: 60px;
  right: 70px;
  width: 160px;
  transform: rotate(-45deg);
}

.conn-3 {
  bottom: 60px;
  left: 70px;
  width: 160px;
  transform: rotate(-45deg);
}

.conn-4 {
  bottom: 60px;
  right: 70px;
  width: 160px;
  transform: rotate(45deg);
}

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

.game-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-medium);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.game-image {
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--light);
}

.game-content {
  padding: 2rem;
}

.game-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.game-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.game-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.game-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.game-stat i {
  color: var(--accent);
}

/* Community */
.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 20px;
  border: 1px solid var(--gray-medium);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

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

.testimonial {
  background: var(--light);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-medium);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--gradient);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

.testimonial-rating {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial h4 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-medium);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--gray-medium);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: var(--light);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-medium);
}

.contact-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.contact-item strong {
  display: block;
  font-weight: 600;
  color: var(--text);
}

.contact-item span {
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.2rem;
}

.logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--light);
}

/* Desktop Navigation */
.nav-menu.desktop-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu.desktop-nav a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.nav-menu.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  transition: width 0.3s ease;
}

.nav-menu.desktop-nav a:hover::after {
  width: 100%;
}

.nav-menu.desktop-nav a:hover {
  color: var(--neon-blue);
}

/* Mobile Menu Toggle */
.mobile-menu {
  display: none;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--light);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.menu-toggle:hover {
  color: var(--neon-blue);
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.mobile-brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--light);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.mobile-close:hover {
  color: var(--neon-blue);
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.mobile-nav-menu li {
  text-align: center;
}

.mobile-nav-menu a {
  text-decoration: none;
  color: var(--light);
  font-weight: 600;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Inter', sans-serif;
  display: block;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a:hover {
  color: var(--neon-blue);
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--neon-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* Footer */
.site-footer {
  background: var(--gradient-tech);
  color: var(--light);
  padding: 4rem 0 2rem;
}

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

.footer-section h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--neon-blue);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
}

.site-footer p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 16px;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.newsletter-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  opacity: 0.8;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex: 1;
  max-width: 400px;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--neon-blue);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 450px;
  background: var(--light);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border: 2px solid var(--primary);
}

.cookie-content {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookie-icon {
  font-size: 2rem;
  color: var(--primary);
}

.cookie-text h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

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

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

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .title-line {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-visual {
    display: none;
  }
  
  .nav-menu.desktop-nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-newsletter {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .community-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  /* Fix mobile navigation overlay */
  .mobile-nav-overlay {
    width: 100vw;
    left: 0;
    right: 0;
  }
  
  .mobile-nav-content {
    padding: 1rem;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Fix cookie banner positioning */
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    max-width: calc(100vw - 2rem);
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .community-stats {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    max-width: calc(100vw - 1rem);
    bottom: 0.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  /* Ensure no horizontal overflow */
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  .site-header {
    width: 100%;
    left: 0;
    right: 0;
  }
  
  .mobile-nav-overlay {
    width: 100vw;
    left: 0;
    right: 0;
  }
  
  .mobile-nav-content {
    padding: 0.5rem;
    max-width: 100vw;
  }
} 

/* Content Cards */
.content-card {
  background: var(--light);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-medium);
  margin-top: 2rem;
}

.update-date {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.policy-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.policy-section ul {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

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

.link-accent {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link-accent:hover {
  color: var(--accent);
}

/* Grid 2 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Loading state */
body.loaded {
  opacity: 1;
}

body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Additional responsive styles */
@media (max-width: 768px) {
  .content-card {
    padding: 2rem;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
  }
  
  .policy-section p,
  .policy-section ul {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content-card {
    padding: 1.5rem;
  }
  
  .policy-section h2 {
    font-size: 1.3rem;
  }
} 