html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  max-height: 100%;
  scroll-behavior: smooth;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

body {
      max-height: 100%;
  background-image: url(bg.jpg);
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "Arial", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
#language-selector {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

#language-selector button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #00d0ff;
  color: #00e0ff;
  padding: 6px 10px;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

#language-selector button:hover {
  background: rgba(0, 224, 255, 0.2);
}

#rama {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.info {
  position: absolute;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s ease;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.3px;
  text-shadow: 0 0 6px #d6d6d6, 0 0 14px #232323;
  color: #ffffff;
  padding: 20px;
  max-width: 900px;
  font-weight: 500;
}

.info.show {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.info.hide-up {
  opacity: 0;
  transform: translateY(-100%);
  z-index: 1;
}

/* 📱 MOBILE FRIENDLY */
@media (max-width: 768px) {
  .info {
    font-size: 1rem;
    line-height: 1.6;
    padding: 15px;
  }

  #rama {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .info {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  #language-selector button {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}
