/* Shared Navigation Styles - Used across all pages */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Background */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Particle Background */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

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

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-30px); }
  70% { transform: translateY(-15px); }
  90% { transform: translateY(-4px); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
  20%, 40%, 60%, 80% { transform: translateX(10px); }
}

@keyframes wiggle {
  0%, 7%, 14%, 21%, 28%, 35%, 42%, 49%, 56%, 63%, 70%, 77%, 84%, 91%, 98%, 100% { transform: rotate(0deg); }
  2%, 9%, 16%, 23%, 30%, 37%, 44%, 51%, 58%, 65%, 72%, 79%, 86%, 93%, 100% { transform: rotate(-5deg); }
  5%, 12%, 19%, 26%, 33%, 40%, 47%, 54%, 61%, 68%, 75%, 82%, 89%, 96% { transform: rotate(5deg); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
  50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.6); }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Animated Elements */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.animate-slide-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.animate-slide-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* Hover Animations */
.hover-pulse:hover {
  animation: pulse 1s infinite;
}

.hover-bounce:hover {
  animation: bounce 1s;
}

.hover-shake:hover {
  animation: shake 0.5s;
}

.hover-wiggle:hover {
  animation: wiggle 0.5s;
}

.hover-glow:hover {
  animation: glow 1.5s infinite;
}

/* Loading Animations */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #00ffff;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

.loading-dots {
  display: inline-block;
}

.loading-dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%, 100% { content: '...'; }
}

/* Text Animations */
.typewriter {
  overflow: hidden;
  border-right: 3px solid #00ffff;
  white-space: nowrap;
  animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
}

/* Floating Animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

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

/* Rotating Border */
.rotating-border {
  position: relative;
  overflow: hidden;
}

.rotating-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  border-radius: inherit;
  z-index: -1;
  animation: rotate 3s linear infinite;
}

/* Particle Effects */
.particle-container {
  position: relative;
  overflow: hidden;
}

.particle {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Shimmer Effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Success and Error Messages */
.success-message, .error-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 300px;
}

.success-content, .error-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.success-content {
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 255, 0.2));
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

.error-content {
  background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(255, 71, 87, 0.2));
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.success-icon, .error-icon {
  font-size: 1.2rem;
}

/* Enhanced Button Animations */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Card Entrance Animations */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Stats Counter Animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number {
  animation: countUp 1s ease-out;
}

/* Navigation Animations */
.nav-links li {
  opacity: 0;
  transform: translateY(-20px);
  animation: navLinkFade 0.5s ease forwards;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }

@keyframes navLinkFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Animations */
.footer-section {
  opacity: 0;
  transform: translateY(30px);
  animation: footerFadeIn 0.8s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
.footer-section:nth-child(5) { animation-delay: 0.5s; }

@keyframes footerFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Social Link Hover Effects */
.social-link {
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px) rotate(5deg);
}

/* Form Input Animations */
input:focus, textarea:focus {
  animation: inputGlow 0.3s ease;
}

@keyframes inputGlow {
  0% { box-shadow: 0 0 0 rgba(0, 255, 255, 0); }
  50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
  100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
}

/* Page Load Animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

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

.loader-logo {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 1.5s ease infinite;
  margin-bottom: 1rem;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #00ffff;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
  margin: 0 auto;
}

/* Hero Section Animations */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-badge {
  opacity: 0;
  transform: translateY(-30px) scale(0.8);
  animation: heroBadgeFadeIn 1s ease 0.5s forwards;
}

@keyframes heroBadgeFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-title {
  opacity: 0;
  transform: translateY(50px);
  animation: heroTitleFadeIn 1.2s ease 0.8s forwards;
}

@keyframes heroTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: heroSubtitleFadeIn 1s ease 1.2s forwards;
}

@keyframes heroSubtitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats {
  opacity: 0;
  animation: heroStatsFadeIn 1s ease 1.5s forwards;
}

@keyframes heroStatsFadeIn {
  to {
    opacity: 1;
  }
}

.hero-stat {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: heroStatFadeIn 0.8s ease forwards;
}

.hero-stat:nth-child(1) { animation-delay: 1.6s; }
.hero-stat:nth-child(2) { animation-delay: 1.8s; }
.hero-stat:nth-child(3) { animation-delay: 2.0s; }

@keyframes heroStatFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scroll-triggered Hero Animations */
.hero.scroll-animated .hero-badge {
  opacity: 0;
  transform: translateY(-30px) scale(0.8);
  transition: all 0.8s ease;
}

.hero.scroll-animated .hero-title {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease;
}

.hero.scroll-animated .hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.hero.scroll-animated .hero-stats {
  opacity: 0;
  transition: all 1s ease;
}

.hero.scroll-animated .hero-stat {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 0.8s ease;
}

.hero.scroll-animated.animate-in .hero-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero.scroll-animated.animate-in .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero.scroll-animated.animate-in .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero.scroll-animated.animate-in .hero-stats {
  opacity: 1;
}

.hero.scroll-animated.animate-in .hero-stat {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Enhanced Navbar Scroll Effects */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  box-shadow: 0 4px 30px rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.navbar.scrolled .logo {
  font-size: 1.8rem;
}

.navbar.scrolled .nav-links a {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
}

/* Parallax Effect for Hero */
.hero::before {
  animation: heroParallax 20s ease-in-out infinite;
}

@keyframes heroParallax {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

/* Floating Elements in Hero */
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  opacity: 0.1;
  animation: floatRandom 15s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  font-size: 2rem;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  font-size: 1.5rem;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  font-size: 1.8rem;
  animation-delay: 4s;
}

.floating-element:nth-child(4) {
  top: 40%;
  right: 30%;
  font-size: 1.2rem;
  animation-delay: 6s;
}

@keyframes floatRandom {
  0%, 100% { transform: translateY(0px) rotate(0deg) translateX(0px); }
  25% { transform: translateY(-20px) rotate(90deg) translateX(10px); }
  50% { transform: translateY(10px) rotate(180deg) translateX(-10px); }
  75% { transform: translateY(-10px) rotate(270deg) translateX(5px); }
}

/* Text Gradient Animation */
.hero-title span {
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff, #ff00ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

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

/* Hero Button Animations */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroButtonsFadeIn 1s ease 2.2s forwards;
}

@keyframes heroButtonsFadeIn {
  to {
    opacity: 1;
  }
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-btn-primary {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  color: #000;
}

.hero-btn-secondary {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

/* Main Content */
.main-content {
  margin-top: 80px;
}

/* Features Section */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00ffff;
  margin-bottom: 1rem;
}

.feature-description {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Stats Section */
.stats {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #cccccc;
  font-size: 1rem;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: #00ffff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card {
    padding: 2rem;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(0, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient 3s ease infinite;
  text-decoration: none;
}

.nav-links {
  display: flex !important;
  list-style: none;
  gap: 2rem;
  align-items: center;
  visibility: visible !important;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: #00ffff;
  background: rgba(0, 255, 255, 0.1);
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::before {
  width: 80%;
}

/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.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 ease;
}

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

.btn-login {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  color: #000;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.btn-logout {
  background: linear-gradient(45deg, #ff4444, #ff6666);
  color: #fff;
}

.btn-logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
}

.btn-login {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-login:hover {
  background: #ffffff;
  color: #000;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none !important;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  padding: 1rem;
}

.mobile-menu li {
  padding: 0.5rem 0;
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem 0;
}

.mobile-menu a:hover {
  color: #00ffff;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
    visibility: hidden !important;
  }

  .mobile-menu-btn {
    display: block !important;
    visibility: visible !important;
  }

  .mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0;
  }

  .mobile-menu.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.5rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .mobile-menu-btn {
    font-size: 1.2rem;
  }
}

/* Footer Styles */
.footer {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(0, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 0, 255, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200px 200px, 150px 150px, 100px 100px;
  animation: floatParticles 20s ease-in-out infinite;
}

@keyframes floatParticles {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 10s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-section {
  position: relative;
}

.brand-section {
  max-width: 350px;
}

.footer-logo h3 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient 3s ease infinite;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: #ff00ff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  transition: left 0.3s ease;
  z-index: -1;
}

.social-link:hover::before {
  left: 0;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
  color: #000;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #00ffff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

.newsletter-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
  animation: rotate 20s linear infinite;
}

.coming-soon-badge {
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.coming-soon-text {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.coming-soon-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

.notify-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.notify-btn {
  background: linear-gradient(45deg, #ff6b6b, #ff8e53) !important;
}

.notify-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4) !important;
}

.newsletter-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #888888;
}

.newsletter-input:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.newsletter-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border: none;
  border-radius: 10px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.newsletter-stats {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

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

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #00ffff;
}

.stat-label {
  font-size: 0.8rem;
  color: #888888;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copyright p {
  color: #888888;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  color: #ff00ff !important;
  font-size: 0.8rem !important;
  font-weight: 600;
}

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

.footer-legal a {
  color: #888888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #00ffff;
}

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

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.3);
}

.badge-icon {
  font-size: 1rem;
}

.badge-text {
  color: #cccccc;
  font-weight: 600;
}

.footer-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

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

/* Newsletter Success Message */
.newsletter-success {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(45deg, #00ff88, #00ffff);
  color: #000;
  padding: 2rem 3rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 10000;
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4);
  animation: successPulse 0.5s ease;
  text-align: center;
}

@keyframes successPulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  50% { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .brand-section {
    max-width: 100%;
  }

  .footer-logo h3 {
    font-size: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-stats {
    justify-content: center;
    gap: 1rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 2rem 1rem;
  }

  .footer-main {
    padding: 2rem 1rem;
  }

  .newsletter-section {
    padding: 1.5rem;
  }

  .footer-bottom-content {
    padding: 1.5rem 1rem;
  }
}
