* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 800px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease-out;
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  border-radius: 50%;
  object-fit: contain;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: 600;
}

.language-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.language-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 180px;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  border: none;
  padding: 20px;
}

.language-btn:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.flag {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 1px solid #eee;
}

.language-name {
  font-size: 1.2rem;
  font-weight: 600;
}

footer {
  margin-top: 40px;
  color: #666;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .container {
      padding: 30px 20px;
  }
  
  h1 {
      font-size: 1.8rem;
      margin-bottom: 30px;
  }
  
  .language-options {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }
  
  .language-btn {
      width: 140px;
      height: 160px;
  }
  
  .flag {
      width: 80px;
      height: 50px;
  }
}