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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: white;
  background: linear-gradient(135deg, #1e1b4b 0%, #581c87 50%, #0f172a 100%);
  min-height: 100vh;
}

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

/* Header Styles */
.header {
  padding: 1.5rem 0;
  position: relative;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 2rem;
  height: 2rem;
  color: #fbbf24;
}

.nav-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fbbf24;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(30, 27, 75, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  z-index: 1000;
}

.mobile-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Hero Styles */
.hero {
  padding: 5rem 0;
  text-align: center;
}

.hero-content {
  max-width: 4xl;
  margin: 0 auto;
}

.hero-icons {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-moon {
  width: 5rem;
  height: 5rem;
  color: #fbbf24;
  animation: pulse 2s infinite;
}

.hero-star-1 {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
}

.hero-sparkle {
  width: 1rem;
  height: 1rem;
  color: #fde047;
  position: absolute;
  bottom: -0.25rem;
  left: -0.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fbbf24, #c084fc, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  background: linear-gradient(to right, #7c3aed, #2563eb);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(to right, #6d28d9, #1d4ed8);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #c084fc;
  border: 2px solid #c084fc;
}

.btn-outline:hover {
  background: #c084fc;
  color: white;
}

.btn-cta {
  background: linear-gradient(to right, #eab308, #f97316);
  color: black;
  font-weight: bold;
  padding: 1rem 3rem;
}

.btn-cta:hover {
  background: linear-gradient(to right, #ca8a04, #ea580c);
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 32rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 6xl;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(59, 130, 246, 0.3));
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.5);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  padding: 0.75rem;
  border-radius: 50%;
  color: white;
}

.feature-icon.purple-blue {
  background: linear-gradient(to right, #7c3aed, #2563eb);
}

.feature-icon.indigo-purple {
  background: linear-gradient(to right, #4f46e5, #7c3aed);
}

.feature-icon.pink-purple {
  background: linear-gradient(to right, #ec4899, #7c3aed);
}

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

.feature-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.btn-feature {
  width: 100%;
  justify-content: center;
}

.btn-feature.purple-blue {
  background: linear-gradient(to right, #7c3aed, #2563eb);
  color: white;
}

.btn-feature.indigo-purple {
  background: linear-gradient(to right, #4f46e5, #7c3aed);
  color: white;
}

.btn-feature.pink-purple {
  background: linear-gradient(to right, #ec4899, #7c3aed);
  color: white;
}

/* Signs Section */
.signs {
  padding: 5rem 0;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 6xl;
  margin: 0 auto;
}

.sign-card {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.sign-card:hover {
  border-color: rgba(251, 191, 36, 0.5);
  transform: scale(1.05);
}

.sign-icon {
  width: 2rem;
  height: 2rem;
  color: #fbbf24;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.sign-card:hover .sign-icon {
  transform: scale(1.1);
}

.sign-name {
  font-weight: 600;
  color: white;
  transition: color 0.3s ease;
}

.sign-card:hover .sign-name {
  color: #fbbf24;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
}

.cta-content {
  max-width: 4xl;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(59, 130, 246, 0.3));
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 2rem;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  color: #fbbf24;
  margin: 0 auto 1.5rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(147, 51, 234, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #fbbf24;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer-bottom {
  text-align: center;
  color: #9ca3af;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background: linear-gradient(135deg, #1e1b4b, #581c87);
  margin: 15% auto;
  padding: 2rem;
  border-radius: 1rem;
  width: 80%;
  max-width: 500px;
  position: relative;
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.close:hover {
  color: #fbbf24;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .signs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .cta-content {
    padding: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .signs-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 95%;
    margin: 20% auto;
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .signs-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Zodiac grid styles */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Footer link styles */
footer a {
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
