:root {
  --primary-blue: #007bff;
  --dark-blue: #0056b3;
  --neon-blue: #00f3ff;
  --dark-grey: #333;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 123, 255, 0.2) 50%,
    rgba(0, 0, 0, 0.7) 100%
  ), url('https://cdn.discordapp.com/attachments/1256380849851596823/1323994577333649439/image.png?ex=677d2109&is=677bcf89&hm=38de54f7aa5a1e8e90568418ffb75da28058682e4a794c82555ddcae81d583e0&');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
}

nav {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 243, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  position: fixed;
  width: 100%;
  top: 0;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--white);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.logo {
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

.title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.tagline {
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-bottom: 3rem;
  text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
  letter-spacing: 2px;
}

/* Content Sections */
.content-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.services {
  background-image: url('https://cdn.discordapp.com/attachments/1256380849851596823/1322174298491846706/image.png?ex=677d1945&is=677bc7c5&hm=2181c1a77659c25ef1054184eec41cbd13f3d6f5f4dd7ef79a1e2e3740a0b466&');
}

.gangs {
  background-image: url('https://media.discordapp.net/attachments/1256380849851596823/1325442750006689813/Untitled-7.png?ex=677d1fc1&is=677bce41&hm=0824adb9047f44d4305caa8f67dbbc666f98aa4239f295faf3d719bc1372cf9c&=&format=webp&quality=lossless&width=810&height=456');
}

.community {
  background-image: url('https://media.discordapp.net/attachments/1256380849851596823/1325117335048163438/image.png?ex=677d4230&is=677bf0b0&hm=e5e61e6463f29b851ca6f4103a79924af50e0b8a7b3bbbcb3e1b8b9148507c66&=&format=webp&quality=lossless&width=810&height=425');
}

.section-content {
  position: relative;
  max-width: 800px;
  margin: 0 2rem;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 243, 255, 0.3);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s ease;
}

.section-content.visible {
  transform: translateY(0);
  opacity: 1;
}

.section-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.section-content p {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Features */
.features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 243, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

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

/* Description */
.description {
  margin-bottom: 3rem;
  position: relative;
}

.neon-border {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
  backdrop-filter: blur(10px);
}

/* Discord Button */
.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(45deg, #5865F2, #7289DA);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.discord-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 0 20px rgba(88, 101, 242, 0.5),
    0 0 40px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover .discord-icon {
  transform: rotate(360deg);
  background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 4rem 2rem;
  border-top: 2px solid rgba(0, 243, 255, 0.3);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo img {
  height: 80px;
  filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    padding: 6rem 2rem 2rem;
  }

  .features {
    gap: 1.5rem;
  }

  .feature {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 200px;
  }

  .section-content {
    margin: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-status {
    display: none;
  }

  .logo {
    height: 40px;
  }

  .title {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .features {
    gap: 1rem;
  }
  
  .feature {
    padding: 1rem;
    flex: 1 1 calc(50% - 1rem);
  }
  
  .section-content {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .section-content h2 {
    font-size: 2rem;
  }

  .footer {
    padding: 3rem 1.5rem;
  }
  
  .footer-logo img {
    height: 60px;
  }

  .description {
    margin: 2rem 1rem;
  }

  .neon-border {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem;
  }

  .hero-content {
    padding: 5rem 1rem 1rem;
  }
  
  .title {
    font-size: 2rem;
  }
  
  .feature {
    flex: 1 1 100%;
    min-width: unset;
  }
  
  .discord-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .discord-icon {
    width: 30px;
    height: 30px;
  }
  
  .section-content {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .section-content h2 {
    font-size: 1.8rem;
  }

  .section-content p {
    font-size: 1rem;
  }

  .description {
    margin: 1.5rem 0.5rem;
  }

  .neon-border {
    padding: 1rem;
  }
}