
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #12121a, #0b0b0f);
  color: white;
}

/* NAVBAR */
.navbar {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  padding: 15px 20px;
}

.nav-logo {
  font-weight: bold;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #8ab4ff;
  text-decoration: none;
  font-weight: bold;
}

/* LANGUAGE */
.lang-switch {
  font-size: 12px;
  opacity: 0.7;
}

.lang-switch a {
  color: #8ab4ff;
  text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE */
@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0b0b0f;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* MAIN */
.container {
  max-width: 600px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.logo {
  width: 110px;
  margin-bottom: 20px;
  border-radius: 14px;
  filter: drop-shadow(0 0 10px rgba(255, 0, 150, 0.4));
}

h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.subtitle {
  opacity: 0.7;
}

.tagline {
  font-size: 14px;
  opacity: 0.6;
  margin: 10px 0 25px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4da6;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

/* SECTIONS */
.section {
  margin-top: 50px;
  text-align: left;
}

.section h2 {
  margin-bottom: 10px;
}

.item {
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 10px;
  margin: 10px 0;
}

/* SOCIAL */
.social {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}

.social a {
  color: #8ab4ff;
  text-decoration: none;
  margin: 0 6px;
}

.social span {
  opacity: 0.4;
}

/* FOOTER */
.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  opacity: 0.5;
}

.footer a {
  color: #8ab4ff;
  text-decoration: none;
}
