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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111827;
  color: white;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Background Styles */
.background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111827 0%, rgba(147, 51, 234, 0.2) 50%, rgba(59, 130, 246, 0.2) 100%);
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.waves {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.wave-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wave1 {
  animation: pulse 3s infinite;
}

.wave2 {
  animation: pulse 4s infinite 1s;
}

.mouse-follow {
  position: absolute;
  width: 384px;
  height: 384px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Navigation Styles */
.nav {
  position: relative;
  z-index: 50;
  padding: 24px;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
}

.nav-content {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-title {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: white;
}

/* Hero Styles */
.hero {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 24px;
}

.hero-content {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  backdrop-filter: blur(4px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 9999px;
  padding: 8px 16px;
  margin-bottom: 32px;
  color: #93c5fd;
  font-size: 14px;
  font-weight: 500;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 72px;
  }
}

.hero-title-main {
  background: linear-gradient(to right, white, #dbeafe, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-sub {
  font-size: 24px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hero-title-sub {
    font-size: 32px;
  }
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 24px;
  }
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

@media (min-width: 640px) {
  .cta-container {
    flex-direction: row;
    gap: 24px;
  }
}

.cta-button {
  background: linear-gradient(to right, #2563eb, #7c3aed);
  color: white;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-button:hover {
  background: linear-gradient(to right, #1d4ed8, #6d28d9);
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.4);
}

.trust-indicators {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trust-indicators {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
  text-align: center;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.trust-card svg {
  margin: 0 auto 12px;
  color: #60a5fa;
}

.trust-card h3 {
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* FAQ Styles */
.faq-section {
  position: relative;
  z-index: 10;
  padding: 80px 24px;
}

.faq-container {
  max-width: 1024px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
  background: linear-gradient(to right, white, #dbeafe, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 48px;
  }
}

.faq-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-question {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-answer {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  padding-left: 20px;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
  backdrop-filter: blur(16px);
  background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 32px;
}

.faq-cta h3 {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.discord-button {
  background: #5865f2;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.discord-button:hover {
  background: #4752c4;
  transform: scale(1.05);
}

/* Footer Styles */
.footer {
  position: relative;
  z-index: 10;
  padding: 64px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1536px;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.floating-1 {
  top: 25%;
  left: 40px;
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.1);
  animation: bounce 3s infinite;
}

.floating-2 {
  top: 33%;
  right: 80px;
  width: 64px;
  height: 64px;
  background: rgba(139, 92, 246, 0.1);
  animation: bounce 4s infinite 1s;
}

.floating-3 {
  bottom: 25%;
  left: 25%;
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.1);
  animation: bounce 5s infinite 2s;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-title-sub {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .faq-title {
    font-size: 28px;
  }
}
