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

body, html {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
  height: 100%;
  width: 100%;
  overflow-y: auto;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  justify-content: space-between;
  text-align: center;
  padding-bottom: 2rem;
}

.header {
  padding: 1rem;
}

.logo {
  width: 160px;
  height: auto;
}

.banner {
  background-color: #4EFF9E;
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  flex-direction: row;
}

.news-btn {
  background-color: white;
  color: #000000;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: transform 0.2s ease-in-out;
  border: 2px solid #4EFF9E;
}

.news-btn:hover {
  transform: scale(1.1);
}

.banner-text {
  font-size: 1rem;
  line-height: 1.4;
}

.text-line {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.4rem;
}

.emoji {
  font-size: 1.1em;
  line-height: 1;
}

.main-content {
  flex-grow: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000000;
}

.subheading {
  font-size: 1.375rem;
  font-weight: 400;
  color: #444444;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

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

.btn {
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  font-size: 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.btn.primary {
  background-color: #4EFF9E;
  color: #000;
  border: 2px solid #000;
}

.btn.primary:hover {
  background-color: #3cdb86;
}

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

.btn.black-outline:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.footer {
  font-size: 0.875rem;
  color: #777777;
  padding: 1rem;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .subheading {
    font-size: 1.1rem;
    padding: 0 1.25rem;
  }

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

  .banner {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: left;
  }

  .banner-text {
    flex: 1;
    font-size: 0.95rem;
  }
}
