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

.app {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.coming-soon-banner {
  background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
  background-size: 300% 300%;
  animation: gradient 3s ease infinite;
  padding: 12px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-text {
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  padding: 80px 0 120px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
}

.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5865f2;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(88, 101, 242, 0.4);
}

.discord-icon {
  width: 24px;
  height: 24px;
}

.main-content {
  background: #1a1a1a;
  border-radius: 20px 20px 0 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}

.content-section {
  padding: 60px 0;
  border-bottom: 1px solid #333;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.content-section p {
  font-size: 1.1rem;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.help-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.help-options:has(.help-card:nth-child(4)) .help-card:nth-child(4) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 400px;
}

.help-card {
  background: #2d2d2d;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.help-card:hover {
  transform: translateY(-5px);
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
}

.help-card h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.help-card p {
  text-align: left;
  margin-bottom: 20px;
  color: #cccccc;
}

.link-button {
  display: inline-block;
  background: #667eea;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-button:hover {
  background: #5a6fd8;
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #3a3a3a;
  border: 2px solid #555;
  border-radius: 50px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.25);
}

.link-icon {
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .content-section h2 {
    font-size: 2rem;
  }
  
  .help-options {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .banner-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 60px 0 80px;
  }
  
  .content-section {
    padding: 40px 0;
  }
}
