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

body,
html {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  background: url('/assets/website/mariia-shalabaieva-HBkpnDVc_Ic-unsplash.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}

.container {
  max-width: 600px;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.4;
  word-spacing: 0.1em;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.8;
  line-height: 1.8;
  word-spacing: 0.05em;
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.btn-primary {
  background-color: #0d6efd;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.lang-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}

.lang-btn {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.lang-btn.active {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .button-group {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .lang-switcher {
    top: 10px;
    right: 10px;
    gap: 4px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 1rem;
  }

  .description {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .container {
    padding: 15px;
  }

  .button-group {
    margin-bottom: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .lang-switcher {
    top: 8px;
    right: 8px;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 9px;
  }

  .footer {
    font-size: 10px;
  }
}
