* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #111111;
  background: #ffffff !important;
}

.top-bar {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.language-switcher {
  position: relative;
}

.language-toggle {
  border: 1px solid #1b5e20;
  border-radius: 999px;
  background: #ffffff;
  color: #1b5e20;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 150px;
  background: #ffffff;
  border: 1px solid #1b5e20;
  border-radius: 10px;
  padding: 0.25rem;
}

.language-option {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #1b5e20;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  padding: 0.55rem 0.65rem;
}

.language-option:hover {
  background: #e8f3ea;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
}

.slogan {
  margin: 0;
  color: #111111;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.2;
}

p {
  max-width: 620px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #111111;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.button {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
}

.button-play {
  background-color: #14532d;
}

.button-ios {
  background-color: #064e3b;
}

.policy-link {
  margin-top: 1.5rem;
}

.policy-link a {
  color: #1b5e20;
}

.site-footer {
  width: min(1100px, calc(100% - 2rem));
  margin: 2.5rem auto 1.2rem;
  padding: 1.1rem;
  border: 1px solid rgba(27, 94, 32, 0.35);
  border-radius: 18px;
  background: linear-gradient(135deg, #0f4f21, #1b5e20);
  backdrop-filter: blur(3px);
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-title {
  margin: 0;
  font-size: 0.98rem;
  color: #ffffff;
  font-weight: 700;
}

.footer-store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.2);
}

.store-icon {
  font-size: 1.05rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-legal a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.08rem;
}

.footer-copy {
  margin: 0;
  max-width: none;
  font-size: 0.88rem;
  color: #ffffff;
  opacity: 0.9;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }

  .footer-right {
    text-align: right;
  }

  .footer-right .footer-legal {
    justify-content: flex-end;
  }
}
