:root {
  --pink: #FF40A0;
  --pink-light: #FFB7E6;
  --yellow: #F0FE72;
  --teal: #60A3A6;
  --bg: #0A0E27;
  --surface: #1A203A;
  --border: rgba(255, 255, 255, 0.08);
  --text-white: #FFFFFC;
  --text-muted: #BDC2C9;
  --text-body: #C8D0E7;
  --font: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
}


/* Main Navbar */
.top-navbar {
  width: 100%;
  min-height: 64px;
  padding: 0 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--bg);
  border-bottom: 1px solid var(--border);

  font-family: var(--font);
  box-sizing: border-box;
  z-index: 1000;
}

/* Logo */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;

  background: transparent;
  border: none;
  padding: 0;

  cursor: pointer;
}

.nav-left:hover {
  opacity: 0.9;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--text-white);
}

.nav-logo-icon i {
  font-size: 16px;
  color: var(--text-white);
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
}

/* Center Links */
.nav-center {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-center a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-center a:hover {
  color: var(--text-white);
}

/* Right Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px; /* space between Login and Sign Up */
}

.btn-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);

  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;

  cursor: pointer;
  transition: 0.2s ease;
}

.btn-login:hover {
  color: var(--text-white);
  border-color: var(--text-muted);
}

.btn-signup {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);

  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));

  cursor: pointer;
  transition: 0.2s ease;
}

.btn-signup:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.language-switcher {
  height: 36px;
  padding: 4px;

  display: inline-flex;
  align-items: center;
  gap: 4px;

  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher a {
  min-width: 34px;
  height: 28px;
  padding: 0 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;

  transition: 0.2s ease;
}

.language-switcher a:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher a.active {
  color: var(--text-white);
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
}

.language-switcher span {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* Mobile */
@media (max-width: 768px) {
  .top-navbar {
    padding: 0 20px;
    gap: 16px;
  }

  .nav-center {
    gap: 18px;
  }

  .nav-center a {
    font-size: 14px;
  }

  .nav-actions {
    gap: 10px;
  }

  .btn-login,
  .btn-signup {
    padding: 8px 12px;
    font-size: 13px;
  }
  
}

@media (max-width: 560px) {
  .top-navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 16px;
  }

  .nav-left,
  .nav-center,
  .nav-actions {
    width: 100%;
    justify-content: center;
  }

  .nav-center {
    order: 3;
  }

  .nav-actions {
    order: 2;
  }
}
.top-navbar {
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  padding-top: 0;
  padding-bottom: 0;
}

.top-navbar .nav-left,
.top-navbar .nav-center,
.top-navbar .nav-actions {
  height: 64px;
  display: flex;
  align-items: center;
}

.top-navbar .logo-text,
.top-navbar .nav-center a,
.top-navbar .btn-login,
.top-navbar .btn-signup {
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.top-navbar .btn-login,
.top-navbar .btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 560px) {
  .top-navbar {
    height: auto;
    min-height: 64px;
    max-height: none;
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 10px;
  }

  .top-navbar .nav-left,
  .top-navbar .nav-center,
  .top-navbar .nav-actions {
    height: auto;
    width: 100%;
    justify-content: center;
  }

  .top-navbar .nav-center {
    order: 3;
    flex-wrap: wrap;
    gap: 14px;
  }

  .top-navbar .nav-actions {
    order: 2;
    flex-wrap: wrap;
  }
  .language-switcher {
  height: 34px;
}

.language-switcher a {
  min-width: 32px;
  height: 26px;
  font-size: 11px;
}
}
