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

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #ff7e5f, #feb47b);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1.5s ease-in;
}

.container {
  max-width: 500px;
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(5px);
}

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

p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-size: 1rem;
}

.btn {
  background: #fff;
  color: #ff7e5f;
  padding: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.btn:hover {
  background: #ffe0d3;
  color: #d94600;
}

.lang-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media(min-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  p {
    font-size: 1.1rem;
  }
  .lang-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
