:root {
  --bg-deep-space: #17131a;
  --bg-grad-top: #2a2225;
  --bg-grad-mid: #201a22;
  --bg-panel: rgba(42, 34, 41, 0.9);
  --bg-panel-strong: rgba(33, 27, 34, 0.98);
  --bg-nav: rgba(31, 26, 33, 0.98);

  --gold-gradient: linear-gradient(180deg, #d9bc8f 0%, #b78d56 58%, #8a653b 100%);
  --silver-gradient: linear-gradient(180deg, #f3e3c7 0%, #d8bd92 60%, #b48a56 100%);

  --text-light: #f3e9d8;
  --text-muted: #c7b79f;
  --text-soft: #e4cda5;

  --glass-border: rgba(199, 156, 98, 0.36);
  --glass-border-strong: rgba(232, 192, 131, 0.58);

  --shadow-gold: 0 8px 20px rgba(95, 63, 26, 0.35);
  --shadow-gold-hover: 0 12px 30px rgba(95, 63, 26, 0.5);
  --glow-soft: 0 8px 22px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.neo-page {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(1200px 500px at 95% 0%, rgba(201, 155, 93, 0.15), transparent 60%),
    radial-gradient(900px 380px at 8% 8%, rgba(110, 85, 56, 0.15), transparent 65%),
    linear-gradient(160deg, var(--bg-grad-top) 0%, var(--bg-grad-mid) 45%, var(--bg-deep-space) 100%);
  color: var(--text-light);
  padding-top: 3.375rem;
  min-height: 100vh;
}

.neo-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 18% 35%, rgba(190, 151, 91, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 80% 22%, rgba(146, 109, 66, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 62% 76%, rgba(190, 151, 91, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
}

a {
  color: #dbbf95;
  text-decoration: none;
}

a:hover {
  color: #f3d5a6;
}

.neo-nav {
  background: linear-gradient(180deg, #2b242c 0%, #1e1a22 100%);
  border-right: 1px solid rgba(199, 156, 98, 0.3);
  border-bottom: 1px solid rgba(199, 156, 98, 0.3);
  backdrop-filter: blur(14px);
  padding-left: 1rem;
  padding-right: 1rem;
}

.neo-nav .navbar-brand .img-profile {
  max-width: 7.6rem;
}

.neo-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.neo-menu-item {
  margin-bottom: 0.4rem;
}

.neo-menu-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f2f6ff;
  font-size: 0.95rem;
  letter-spacing: 0.03rem;
  border-radius: 0.7rem;
  padding: 0.45rem 0.55rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.neo-menu-link i {
  color: #c8d0e0;
}

.neo-menu-link:hover {
  color: #fff1d9;
  background: rgba(185, 141, 82, 0.16);
}

.neo-menu-link.active {
  color: #fff3df;
  background: linear-gradient(180deg, #c4a06f 0%, #9f7748 100%);
  box-shadow: inset 0 0 0 1px rgba(248, 224, 181, 0.45);
}

.neo-cta {
  background: linear-gradient(180deg, #e34f3a 0%, #c3261a 65%, #8d170f 100%);
  border: 1px solid #d8b884;
  color: #fff6e8;
  width: 100%;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  text-transform: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.neo-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
  color: #fff6e8;
}

.neo-language .neo-cta {
  background: linear-gradient(180deg, #ccb289 0%, #a17a4b 100%);
  border-color: rgba(245, 220, 178, 0.48);
  color: #2b1d10;
  box-shadow: none;
}

.neo-language .neo-cta:hover {
  background: linear-gradient(180deg, #d7be96 0%, #ab8352 100%);
  color: #2b1d10;
  transform: none;
  box-shadow: none;
}

.neo-language .dropdown-menu {
  background: rgba(36, 30, 38, 0.98);
  border: 1px solid rgba(199, 156, 98, 0.42);
  backdrop-filter: blur(12px);
}

.neo-language .dropdown-menu a {
  color: #f3e9d8;
}

.neo-language .dropdown-menu a:hover {
  background: rgba(188, 147, 89, 0.2);
}

.neo-hero {
  padding: 2rem 1rem 0;
  background: transparent;
}

.neo-hero .carousel {
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--glow-soft);
}

.neo-hero .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.neo-hero .carousel-item {
  background: #080c16;
}

.neo-main {
  background: transparent;
  padding-bottom: 3rem;
}

.neo-category {
  padding-top: 2rem;
}

.neo-chiplist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  padding: 0.45rem 0.25rem;
  border-top: 1px solid rgba(207, 171, 114, 0.24);
  border-bottom: 1px solid rgba(207, 171, 114, 0.24);
  background: linear-gradient(180deg, rgba(49, 41, 50, 0.88) 0%, rgba(36, 31, 41, 0.95) 100%);
}

.neo-chip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #dbcab1;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 0.52rem 1.15rem;
  background: linear-gradient(180deg, rgba(82, 72, 90, 0.58) 0%, rgba(52, 45, 60, 0.85) 100%);
  border: 1px solid rgba(202, 167, 111, 0.55);
  box-shadow: inset 0 0 0 1px rgba(244, 219, 183, 0.14), 0 2px 8px rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.neo-chip-icon {
  font-size: 1.05rem;
  line-height: 1;
  color: #e2b66f;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.neo-chip-link:hover,
.neo-chip-link.active {
  color: #fff1d8;
  background: linear-gradient(180deg, #d0ad7c 0%, #aa7c49 100%);
  border-color: rgba(250, 228, 194, 0.65);
  box-shadow: inset 0 0 0 1px rgba(255, 237, 211, 0.45), 0 0 14px rgba(83, 54, 26, 0.35);
}

.neo-chip-link:hover .neo-chip-icon,
.neo-chip-link.active .neo-chip-icon {
  color: #fff0d1;
}

.neo-section-head {
  padding-top: 1.5rem;
  align-items: center;
}

.neo-section-head h2,
.neo-section-head h3 {
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.neo-section-head .neo-seeall {
  color: #dfbf8f;
  text-transform: uppercase;
  font-weight: 600;
}

.neo-grid {
  margin-top: 0.5rem;
}

.neo-card {
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  border-radius: 0.65rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.neo-card img {
  width: 100%;
  display: block;
}

.neo-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-strong);
  box-shadow: 0 0 18px rgba(103, 72, 39, 0.38);
  opacity: 1;
}

.neo-copy {
  padding-top: 2rem;
}

.neo-copy h1 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 2rem;
  margin-top: 1rem;
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neo-copy h2 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.6rem;
  margin-top: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neo-copy h3 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.3rem;
  margin-top: 1.4rem;
  color: var(--text-soft);
}

.neo-copy p,
.neo-copy ul,
.neo-copy ol {
  color: var(--text-muted);
  line-height: 1.7;
}

.neo-copy strong {
  color: #f0d09c;
}

.neo-copy li::marker {
  color: #cb9d62;
}

.neo-payments img {
  filter: none;
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  border-radius: 0.65rem;
  padding: 0.8rem;
}

.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;
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: var(--glow-soft);
}

.bg-primary {
  background-color: var(--bg-nav) !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-nav .navbar-collapse .neo-menu {
    flex-direction: column;
    width: 90%;
    text-align: left;
    padding-left: 1rem;
  }

  .neo-nav .navbar-collapse .neo-menu-item {
    padding-top: 0.6rem;
  }
}

@media (max-width: 768px) {
  .neo-hero .carousel-item img {
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }
}
