* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-space-black: #0a0a0f;
  --dark-purple: #1a0f2e;
  --neon-purple: #a855f7;
  --bright-purple: #c084fc;
  --light-gray: #d1d5db;
  --white: #f9fafb;
  --amber: #fbbf24;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--deep-space-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--deep-space-black), #1a0a2e);
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: white;
  border-radius: 50%;
  animation: twinkle linear infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(251, 191, 36, 0.1);
  border: 2px solid var(--amber);
  color: var(--amber);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
  50% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.5); }
}

.hero-logo {
  max-width: 100%;
  width: 650px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.6)) 
          drop-shadow(0 0 30px rgba(168, 85, 247, 0.4));
  animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  from { filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.6)); }
  to { filter: drop-shadow(0 0 35px rgba(168, 85, 247, 0.9)); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--light-gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
}

.btn-primary {
  background: rgba(168, 85, 247, 0.2);
  border-color: var(--neon-purple);
  color: var(--white);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
  background: var(--neon-purple);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(251, 113, 133, 0.2);
  border-color: #f97316;
  color: var(--white);
  box-shadow: 0 0 20px rgba(251, 113, 133, 0.4);
}

.btn-secondary:hover {
  background: #f97316;
  box-shadow: 0 0 40px rgba(251, 113, 133, 0.8);
  transform: translateY(-2px);
}

.about {
  padding: 6rem 0;
  background-color: var(--deep-space-black);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.1rem;
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
}

.section-subtitle {
  text-align: center;
  color: var(--light-gray);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.about-card {
  background: linear-gradient(135deg, rgba(26, 15, 46, 0.8), rgba(26, 10, 46, 0.6));
  border: 2px solid var(--neon-purple);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
  backdrop-filter: blur(10px);
}

.about-card p {
  color: var(--light-gray);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.community {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--deep-space-black), var(--dark-purple));
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.community-card {
  background: rgba(26, 15, 46, 0.6);
  border: 2px solid var(--neon-purple);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.community-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.community-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.community-card p {
  color: var(--light-gray);
  font-size: 1rem;
}

.community-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 50px rgba(168, 85, 247, 0.6);
}

.youtube-card:hover { border-color: #ff0000; box-shadow: 0 10px 50px rgba(255, 0, 0, 0.5); }
.youtube-card i { color: #ff0000; }
.patreon-card:hover { border-color: #f97316; box-shadow: 0 10px 50px rgba(249, 115, 22, 0.5); }
.patreon-card i { color: #f97316; }
.roblox-card:hover { border-color: #e5e7eb; box-shadow: 0 10px 50px rgba(229, 231, 235, 0.4); }
.roblox-card i { color: #e5e7eb; }
.discord-card:hover { border-color: #5865f2; box-shadow: 0 10px 50px rgba(88, 101, 242, 0.5); }
.discord-card i { color: #5865f2; }

.faq {
  padding: 6rem 0;
  background-color: var(--deep-space-black);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(26, 15, 46, 0.4);
  border: 2px solid rgba(168, 85, 247, 0.4);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
}

.faq-item:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
  transform: translateY(-5px);
}

.faq-question {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  color: var(--bright-purple);
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-answer {
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.footer {
  padding: 2rem 0;
  text-align: center;
  background-color: var(--deep-space-black);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer p {
  color: var(--light-gray);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 85%;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .section-title {
    font-size: 2rem;
  }
}
