.homepage {
  min-height: calc(100vh - 60px); /* Account for header height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 20px 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  margin-bottom: 80px; /* Space for footer */
}

.hero {
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(45deg, var(--cosmic-white), var(--cosmic-gold), var(--cosmic-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
}

.card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  color: var(--cosmic-gold);
}

.actions {
  margin-top: 1rem;
}

.actions p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}

/* Button styles are now handled by global cosmic theme */

@media (max-width: 640px) {
  .homepage {
    min-height: calc(100vh - 56px); /* Smaller header on mobile */
    padding: 16px 0;
  }
  
  .container {
    margin-bottom: 70px; /* Smaller footer on mobile */
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .button-group {
    flex-direction: column;
  }
} 