body {
  margin: 0;
  color: #fff;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-image:
    url('bg-pattern.svg'), /* верхній шар — патерн */
    radial-gradient(42.68% 135.13% at 50% 50.71%, #2C6335 0%, #04390f 100%); /* нижній шар — градієнт */
  background-repeat: repeat; /* щоб патерн повторювався */
  background-size: auto, cover; /* розмір патерну і градієнта */
  background-position: center; /* центрування */
  min-height: 100vh;
}

#landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.landing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo {
  width: 64px;
  height: 64px;
  margin-right: 1rem;
}

h1 {
  font-family: 'Manrope', sans-serif;
  color: white;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.version-badge {
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  background: #5F7835;
  border-radius: 9999px;
}

h2 {
  font-size: 1rem;
  font-weight: normal;
  color: white;
  margin: 0 auto;
  line-height: 1.5;
  max-width: 600px;
}

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  background: #C42C27;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(167, 176, 200, 0.2);
}

.btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}

footer {
  padding: 1.5rem 0;
  text-align: center;
}

.locale-links {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.locale-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.locale-links a:hover {
  color: white;
}

.locale-links a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}

@media (max-width: 640px) {
  .logo {
    width: 100px;
    height: 100px;
    margin-right: 0;
  }
  .logo-title {
    flex-direction: column;
    gap: 20px;
  }

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 0.875rem;
  }
}
