/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #efeced;
  color: #111111cd;
  overflow: hidden;
  height: 100vh;
}

/* Circle container */
#circle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* Circles */
.circle {
  position: absolute;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.circle1 { background: #313333; }
.circle2 { background: #ece4d0; }
.circle3 { background: #fbfaf5; }
.circle4 { background: #444747; }
.circle5 { background: #d1c8af; }

/* Main container */
.container {
  position: relative;
  z-index: 10;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.logo {
  width: 420px;
  margin-bottom: 20px;
  animation: dropLogo 2s ease-out forwards;
}

/* Drop animation for logo */
@keyframes dropLogo {
  0% {
    transform: translateY(-500px);
    opacity: 0;
  }
  60% {
    transform: translateY(30px);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Language switch */
.lang-switch button {
  padding: 8px 16px;
  margin: 0 5px;
  border: none;
  background: #444;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.lang-switch button.active,
.lang-switch button:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  .logo { width: 380px; }
  h1 { font-size: 2.5rem; }
  p { font-size: 1rem; }
}

@media (max-width: 600px) {
  .logo { width: 280px; }
  h1 { font-size: 2rem; }
  p { font-size: 0.9rem; }
}
