/* Enhanced Gaming Styles for Opera GX Landing Page */

/* CSS Variables for Gaming Theme */
:root {
  --opera-red: #ff1b2d;
  --opera-pink: #ff6b9d;
  --opera-purple: #8b5cf6;
  --opera-dark: #1a1a1a;
  --opera-darker: #0d0d0d;
  --neon-glow: 0 0 20px rgba(255, 27, 45, 0.5);
  --neon-glow-strong: 0 0 30px rgba(255, 27, 45, 0.8), 0 0 40px rgba(255, 27, 45, 0.3);
}

/* Enhanced Hero Section with Gaming Background */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--opera-darker) 0%, var(--opera-dark) 100%);
}

.hero-bg-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(135deg, rgba(255, 27, 45, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%),
    url('./gaming-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1; /* 100% transparency as requested */
  z-index: 1;
}

/* Gaming Overlay Effects */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(255, 27, 45, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 2;
}

/* Enhanced Particle Animation */
.particle-bg-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 27, 45, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 107, 157, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 27, 45, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 150px;
  animation: particle-float-enhanced 25s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes particle-float-enhanced {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-15px) translateX(10px); }
  50% { transform: translateY(0) translateX(-5px); }
  75% { transform: translateY(10px) translateX(5px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Hero Content Styling */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
}

/* Enhanced Typography */
.hero-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--opera-red) 0%, var(--opera-pink) 50%, var(--opera-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 27, 45, 0.5);
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { 
    filter: drop-shadow(0 0 10px rgba(255, 27, 45, 0.5));
  }
  100% { 
    filter: drop-shadow(0 0 20px rgba(255, 27, 45, 0.8));
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 27, 45, 0.3);
  margin-bottom: 2rem;
}

/* Enhanced Gaming Buttons */
.btn-gaming-enhanced {
  background: linear-gradient(135deg, var(--opera-red) 0%, var(--opera-pink) 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 27, 45, 0.3);
}

.btn-gaming-enhanced::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 ease;
}

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

.btn-gaming-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 27, 45, 0.5);
}

/* Gaming Stats Enhancement */
.stats-enhanced {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 27, 45, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--opera-red) 0%, var(--opera-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-bg-enhanced {
    background-position: center right;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }
}

/* Gaming Card Enhancements */
.gaming-card-enhanced {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 27, 45, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gaming-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--opera-red), var(--opera-pink), var(--opera-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gaming-card-enhanced:hover::before {
  opacity: 1;
}

.gaming-card-enhanced:hover {
  transform: translateY(-5px);
  border-color: var(--opera-red);
  box-shadow: 0 10px 30px rgba(255, 27, 45, 0.3);
}

/* Performance Optimizations */
.hero-section * {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .particle-bg-enhanced,
  .hero-title {
    animation: none;
  }
}



/* Additional UI/UX Improvements */

/* Enhanced Navigation */
.navbar-enhanced {
  backdrop-filter: blur(20px);
  background: rgba(13, 13, 13, 0.9);
  border-bottom: 1px solid rgba(255, 27, 45, 0.2);
  transition: all 0.3s ease;
}

.navbar-enhanced:hover {
  border-bottom-color: rgba(255, 27, 45, 0.4);
}

/* Enhanced Navigation Links */
.nav-link-enhanced {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.nav-link-enhanced::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--opera-red), var(--opera-pink));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-enhanced:hover::before {
  width: 80%;
}

.nav-link-enhanced:hover {
  color: var(--opera-pink);
  background: rgba(255, 27, 45, 0.1);
}

/* Enhanced Feature Cards */
.feature-card-enhanced {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 27, 45, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 27, 45, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.feature-card-enhanced:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--opera-red);
  box-shadow: 
    0 20px 40px rgba(255, 27, 45, 0.3),
    0 0 0 1px rgba(255, 27, 45, 0.2);
}

/* Enhanced Feature Icons */
.feature-icon-enhanced {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--opera-red) 0%, var(--opera-pink) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon-enhanced::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.feature-icon-enhanced:hover::before {
  width: 100%;
  height: 100%;
}

.feature-icon-enhanced:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 27, 45, 0.5);
}

/* Enhanced Typography */
.section-title-enhanced {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--opera-red) 0%, var(--opera-pink) 50%, var(--opera-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title-enhanced::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--opera-red), var(--opera-pink));
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Enhanced Testimonial Cards */
.testimonial-card-enhanced {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 27, 45, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--opera-red), var(--opera-pink), var(--opera-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card-enhanced:hover::before {
  opacity: 1;
}

.testimonial-card-enhanced:hover {
  transform: translateY(-5px);
  border-color: var(--opera-pink);
  box-shadow: 0 15px 35px rgba(255, 27, 45, 0.3);
}

/* Enhanced Stats Section */
.stats-section-enhanced {
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 27, 45, 0.2);
  border-bottom: 1px solid rgba(255, 27, 45, 0.2);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 27, 45, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stat-item-enhanced {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.stat-item-enhanced:hover {
  transform: scale(1.05);
}

.stat-number-enhanced {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--opera-red) 0%, var(--opera-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.5rem;
  animation: counter-glow 2s ease-in-out infinite alternate;
}

@keyframes counter-glow {
  0% { filter: drop-shadow(0 0 5px rgba(255, 27, 45, 0.5)); }
  100% { filter: drop-shadow(0 0 15px rgba(255, 27, 45, 0.8)); }
}

/* Enhanced CTA Section */
.cta-section-enhanced {
  background: linear-gradient(135deg, rgba(255, 27, 45, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 4rem 2rem;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 27, 45, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
  pointer-events: none;
  animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Enhanced Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Loading States */
.loading-shimmer {
  background: linear-gradient(90deg, 
    rgba(255, 27, 45, 0.1) 0%, 
    rgba(255, 27, 45, 0.3) 50%, 
    rgba(255, 27, 45, 0.1) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
  .hero-bg-enhanced {
    background-position: center right;
    background-size: cover;
  }
  
  .feature-card-enhanced {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-icon-enhanced {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-card-enhanced {
    padding: 1.5rem;
  }
  
  .stat-item-enhanced {
    padding: 1rem;
  }
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
  .particle-bg-enhanced,
  .hero-title,
  .counter-glow,
  .cta-pulse,
  .shimmer {
    animation: none;
  }
  
  .feature-card-enhanced:hover,
  .feature-icon-enhanced:hover,
  .stat-item-enhanced:hover {
    transform: none;
  }
}

/* Enhanced Focus States */
.btn-gaming-enhanced:focus,
.nav-link-enhanced:focus {
  outline: 2px solid var(--opera-pink);
  outline-offset: 2px;
}

/* Enhanced Print Styles */
@media print {
  .hero-bg-enhanced,
  .particle-bg-enhanced,
  .hero-overlay {
    display: none;
  }
  
  .hero-section {
    background: white;
    color: black;
  }
}

