:root {
  --bg: #0D0D0D;
  --text: #FFFFFF;
  --muted: #BEBEBE;
  --accent: #00CCFF;
  --accent2: #FF0066;
  --accent3: #FFCC00;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  background: #111;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: .2s;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  color: #0B0B0B;
}

.btn-outline {
  border: 1px solid #2a2a2a;
  background: transparent;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, .85);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .3s ease, box-shadow .3s ease;
}

.navbar.transparent {
  background: rgba(13, 13, 13, 0);
  box-shadow: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  color: var(--accent3);
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 4px 10px;
  transition: all .3s ease;
  width: 200px;
}

.search-container input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14px;
  width: 0;
  opacity: 0;
  transition: width .3s ease, opacity .3s ease;
}

.search-container.active input {
  width: 160px;
  opacity: 1;
}

.search-container button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: .2s;
}

.search-container button:hover {
  color: var(--accent3);
}

.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  color: #0B0B0B;
}

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.footer {
  background: #0c0c0c;
  border-top: 2px solid rgba(255,255,255,0.05);
  padding: 60px 0;
  color: var(--text);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left, .footer-right {
  flex: 1 1 280px;
}

.footer-left h3, .footer-right h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  color: var(--accent3);
  margin-bottom: 10px;
}

.footer-left p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 350px;
}

.footer-brand {
  font-weight: 700;
  color: var(--accent2);
}

.footer-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-right ul li {
  margin-bottom: 8px;
}

.footer-right a {
  color: var(--text);
  text-decoration: none;
  transition: .2s;
}

.footer-right a:hover {
  color: var(--accent3);
}

.lang-custom select {
  background: #141414;
  border: 1px solid #333;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-left p {
    margin: 0 auto 20px;
  }

  .search-container {
    width: 40px;
    justify-content: center;
  }

  .search-container.active {
    width: 160px;
  }
}

.logo {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  color: var(--accent3);
  text-decoration: none;
}
.logo:hover {
  opacity: 0.85;
}

.user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #2a2a2a;
  padding: 10px 12px;
  border-radius: 50%;
  color: var(--text);
  transition: .2s;
}
.user-btn:hover {
  color: var(--accent3);
  border-color: var(--accent3);
}

.footer-right-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.powered-by {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.powered-by .small-text {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.powered-by .big-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent2);
}

@media (max-width: 768px) {
  .footer-right-header {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}

