body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #ffffff;
    color: #333;
}

.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
}

.hero {
    max-width: 700px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #3498db; /* or use green: #2ecc71 */
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 1.5rem 0;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #27ae60;
}

footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    background: #f5f5f5;
    margin-top: auto;
}

.landing-wrapper {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--text-color);
}

.landing-wrapper h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.landing-wrapper h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.landing-wrapper p {
  margin: 0.5rem 0 1rem;
}

.start-button {
  background-color: #27ae60;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.start-button:hover {
  background-color: #1e874b;
  transform: translateY(-2px);
}

.fade-in {
  animation: fadeSlideIn 0.8s ease-out;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .start-button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .ranking-icons {
    flex-direction: column;
    align-items: center;
  }
}

