:root {
  --neon-purple: #8a2be2;
  --neon-blue: #00a8ff;
  --neon-green: #00ff7f;
  --neon-pink: #ff6ec7;
  --neon-red: #ff3131;
  --background: #0f0f13;
  --card: #1a1a24;
  --muted: #3a3a4a;
  --border: #2a2a35;
}

body {
  background-color: var(--background);
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.bg-background {
  background-color: var(--background) !important;
}

.bg-card {
  background-color: var(--card) !important;
}

/* Improve contrast for text */
.text-muted-foreground {
  color: #a0a0b0 !important;
}

/* Ensure form inputs have proper contrast */
input, textarea, select {
  background-color: hsl(0, 0%, 5%) !important;
  color: white !important;
}

/* Hero section with gaming background */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/* Hero background */
.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2070');
  background-size: cover;
  background-position: center;
}

/* Hero gradient overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(88, 28, 135, 0.8), rgba(30, 58, 138, 0.8));
}

/* Streamlined navigation */
nav.sticky {
  background-color: black !important;
  border-bottom: none !important;
}

/* Button styling */
.hero-section .flex.flex-wrap {
  justify-content: center !important;
  margin-top: 3rem !important;
}

/* Main title styling */
h1.hero-title {
  font-size: 5.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  margin-bottom: 0 !important;
}

/* Subtitle gradient */
.hero-subtitle {
  background: linear-gradient(90deg, #8860f5 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 5.5rem !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin-top: -0.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* Description text */
.hero-description {
  font-size: 1.25rem !important;
  max-width: 800px !important;
  margin: 1.5rem auto 2.5rem auto !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Button styling */
.hero-button-primary {
  background-color: #9000FF !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 0.75rem 2rem !important;
  border-radius: 0.5rem !important;
  transition: all 0.2s ease !important;
  font-size: 1.125rem !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.hero-button-primary:hover {
  background-color: #A020F0 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(144, 0, 255, 0.4) !important;
}

.hero-button-secondary {
  background-color: transparent !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 0.75rem 2rem !important;
  border-radius: 0.5rem !important;
  border: 2px solid white !important;
  transition: all 0.2s ease !important;
  font-size: 1.125rem !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.hero-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2) !important;
}

/* Logo styling */
.site-logo {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  background: linear-gradient(90deg, #00CCFF 0%, #00FFCC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-decoration: none !important;
  display: inline-block !important;
}

/* Navigation links */
.nav-link {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: white !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
  padding: 0 1rem !important;
}

.nav-link:hover, .nav-link.active {
  color: #00CCFF !important;
}

/* Login button */
.login-button {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: white !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
  margin-right: 1rem !important;
}

.login-button:hover {
  color: #00CCFF !important;
}

/* Get Started button */
.get-started-button {
  background-color: #9000FF !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 0.5rem !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.get-started-button:hover {
  background-color: #A020F0 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(144, 0, 255, 0.4) !important;
}

/* Container adjustments */
.container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
}

/* Fix spacing issues */
.space-x-8 > * {
  margin-right: 2rem !important;
  margin-left: 0 !important;
}

.space-x-8 > *:last-child {
  margin-right: 0 !important;
}

/* Gaming button styling */
.gaming-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background-color: var(--neon-blue);
  color: white;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 168, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.gaming-button:hover {
  background-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
  transform: translateY(-2px);
}

.gaming-button:active {
  transform: translateY(1px);
}

/* Gaming Card Style */
.gaming-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gaming-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

/* Neon Text Style */
.neon-text {
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
               0 0 10px rgba(138, 43, 226, 0.5),
               0 0 15px rgba(0, 168, 255, 0.5),
               0 0 20px rgba(138, 43, 226, 0.3);
}

/* Text Colors */
.text-neon-purple {
  color: var(--neon-purple);
}

.text-neon-blue {
  color: var(--neon-blue);
}

.text-neon-green {
  color: var(--neon-green);
}

.text-neon-pink {
  color: var(--neon-pink);
}

.text-neon-red {
  color: var(--neon-red);
}

/* Background Colors */
.bg-neon-purple {
  background-color: var(--neon-purple);
}

.bg-neon-blue {
  background-color: var(--neon-blue);
}

.bg-neon-green {
  background-color: var(--neon-green);
}

.bg-neon-pink {
  background-color: var(--neon-pink);
}

.bg-neon-red {
  background-color: var(--neon-red);
}

/* Gradient Backgrounds */
.bg-gradient-neon {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(138, 43, 226, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Additional Utilities */
.border-neon-purple {
  border-color: var(--neon-purple);
}

.border-neon-blue {
  border-color: var(--neon-blue);
}

.shadow-neon {
  box-shadow: 0 4px 20px -5px rgba(138, 43, 226, 0.4), 0 8px 10px -6px rgba(0, 168, 255, 0.3);
} 