:root {
  --bg-dark: #02040c;
  --bg-panel: #05080f;
  --bg-panel-hover: #0a1223;
  --text-light: #f8f9ff;
  --text-muted: #b4bbd7;
  --orange-cta: #ff8434;
  --orange-cta-strong: #ffac68;
  --orange-glow: rgba(255, 132, 52, 0.35);
  --blue-info: #4f8cff;
  --blue-info-strong: #2c68ff;
  --blue-glow: rgba(79, 140, 255, 0.35);
  --sidebar-text: #e7ecff;
  --sidebar-icon: #95a0c6;
  --sidebar-icon-active: var(--blue-info);
  --sidebar-hover-bg: rgba(79, 140, 255, 0.12);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.neo-page {
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  padding-top: 3.375rem;
}
a {
  color: var(--blue-info);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--blue-info-strong);
}
.neo-nav {
  background: linear-gradient(180deg, #040812, var(--bg-dark));
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.75), 0 0 30px var(--blue-glow);
}
.neo-nav::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3rem;
  bottom: 3rem;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(79, 140, 255, 0.6), transparent);
}
.neo-nav .navbar-brand .img-profile {
  max-width: 7rem;
}
.neo-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0 0.5rem 1.5rem;
}
.neo-sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.neo-btn {
  border-radius: 0.8rem;
  padding: 0.7rem 1rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(79, 140, 255, 0.25);
}
.neo-btn:hover {
  transform: translateY(-1px);
}
.neo-btn-login {
  background: linear-gradient(135deg, var(--blue-info-strong), var(--blue-info));
  color: #fff;
  border: none;
  text-shadow: 0 0 8px rgba(79, 140, 255, 0.7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 25px var(--blue-glow);
}
.neo-btn-register {
  background: linear-gradient(135deg, var(--orange-cta), var(--orange-cta-strong));
  color: #fff;
  border: none;
  text-shadow: 0 0 8px rgba(255, 132, 52, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px var(--orange-glow);
}
.neo-sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.neo-sidebar-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.75rem;
  color: var(--sidebar-text);
  font-size: 0.92rem;
  letter-spacing: 0.02rem;
  background: rgba(255, 255, 255, 0.01);
  transition: background 0.25s ease, color 0.25s ease;
}
.neo-sidebar-menu-link i {
  color: var(--sidebar-icon);
}
.neo-sidebar-menu-link:hover,
.neo-sidebar-menu-link.active {
  color: var(--sidebar-text);
  background: var(--sidebar-hover-bg);
}
.neo-sidebar-menu-link:hover i,
.neo-sidebar-menu-link.active i {
  color: var(--sidebar-icon-active);
}
.neo-menu-badge {
  margin-left: auto;
  font-size: 0.75rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--blue-info);
  box-shadow: 0 0 12px var(--blue-glow);
  color: #fff;
}
.neo-sidebar-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0 0;
}
.neo-sidebar-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
  padding-bottom: 0.7rem;
}
.neo-sidebar-bottom .neo-sidebar-menu-link {
  background: rgba(79, 140, 255, 0.08);
}
.neo-hero {
  padding: 2rem 1rem 0;
  background: var(--bg-dark);
}
.neo-main {
  background: var(--bg-dark);
  padding-bottom: 3rem;
}
.neo-category {
  padding-top: 2rem;
}
.neo-chiplist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.neo-chip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue-info);
  font-weight: 500;
  text-shadow: 0 0 8px rgba(79, 140, 255, 0.35);
}
.neo-chip-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
}
.neo-chip-link:hover,
.neo-chip-link.active {
  color: var(--text-light);
}
.neo-section-head {
  padding-top: 1.5rem;
  align-items: center;
}
.neo-section-head h2,
.neo-section-head h3 {
  color: var(--blue-info);
  text-shadow: 0 0 18px rgba(79, 140, 255, 0.45);
}
.neo-section-head .neo-seeall {
  color: var(--blue-info-strong);
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(79, 140, 255, 0.35);
}
.neo-grid {
  margin-top: 0.5rem;
}
.neo-card {
  background: var(--bg-panel);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(79, 140, 255, 0.15);
}
.neo-card img {
  width: 100%;
  display: block;
}
.neo-card:hover {
  opacity: 0.65;
  transform: translateY(-6px) scale(1.01);
}
.neo-copy {
  padding-top: 2rem;
}
.neo-copy h1 {
  font-size: 2rem;
  margin-top: 1rem;
  color: var(--blue-info);
  text-shadow: 0 0 18px rgba(79, 140, 255, 0.45);
}
.neo-copy h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: var(--blue-info);
  text-shadow: 0 0 16px rgba(79, 140, 255, 0.4);
}
.neo-copy h3 {
  font-size: 1.3rem;
  margin-top: 1.4rem;
  color: var(--blue-info);
  text-shadow: 0 0 14px rgba(79, 140, 255, 0.35);
}
.neo-copy p,
.neo-copy ul,
.neo-copy ol {
  color: var(--text-muted);
  line-height: 1.7;
}
.neo-copy li::marker {
  color: var(--blue-info);
  text-shadow: 0 0 10px rgba(79, 140, 255, 0.25);
}
.neo-payments img {
  filter: grayscale(20%);
  background: var(--bg-panel);
  border-radius: 0.5rem;
  padding: 0.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}
.neo-footer {
  padding: 2rem 0 3rem;
  text-align: center;
  color: var(--text-muted);
}
.neo-footer img {
  max-height: 40px;
  margin-top: 1rem;
}
.neo-section-image {
  margin: 1.8rem auto;
  text-align: center;
}
.neo-section-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.bg-primary {
  background-color: var(--bg-dark) !important;
}
@media (min-width: 992px) {
  .neo-page {
    padding-top: 0;
    padding-left: 12.5rem;
  }
  .neo-nav {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 12.5rem;
    height: 100vh;
  }
  .neo-nav .navbar-brand {
    display: flex;
    margin-top: 1rem;
  }
  .neo-nav .navbar-collapse {
    display: flex;
    align-items: flex-start;
    flex-grow: 0;
    width: 100%;
    margin-bottom: auto;
  }
  .neo-sidebar {
    flex: 1;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }
}
