:root {
  --bg-page: #f8f7ff;
  --bg-panel: #ffffff;
  --bg-panel-soft: #f3ecff;
  --bg-panel-muted: #f6f4ff;
  --text-dark: #1e1c24;
  --text-muted: #4a4a58;
  --accent-purple: #6f55ff;
  --accent-purple-deep: #5130d5;
  --accent-gold: #ffad38;
  --border-soft: rgba(31, 24, 53, 0.12);
  --shadow-soft: 0 18px 40px rgba(87, 73, 151, 0.15);
  --radius-lg: 1.25rem;
  --radius-btn: 999px;
  --neo-nav-height: 76px;
}

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

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f0ff 35%, #efe6ff 100%);
  color: var(--text-dark);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.neo-page {
  background: transparent;
  min-height: 100vh;
  position: relative;
  padding-top: 0;
}

a {
  color: var(--accent-purple);
}

a:hover {
  color: var(--accent-purple-deep);
}

.neo-nav {
  border: none;
  background: linear-gradient(90deg, #ffffff 0%, #fbf8ff 60%, #f7f0ff 100%);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 40px rgba(57, 42, 102, 0.08);
  padding: 1rem 2rem;
}

.navbar-toggler {
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7f4fff, #a04dff 50%, #c05cff);
  box-shadow: 0 10px 25px rgba(111, 84, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

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

.neo-menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.neo-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.neo-menu-actions .neo-cta,
.neo-menu-actions .neo-language {
  width: 100%;
}

section#promos {
  margin-top: 0;
}

@media (max-width: 991px) {
  section#promos {
    margin-top: var(--neo-nav-height);
  }
}

@media (min-width: 992px) {
  .neo-menu-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }

  .neo-menu-actions {
    flex-direction: row;
    gap: 1rem;
    margin-left: auto;
    width: auto;
    align-items: center;
  }

  .neo-menu-actions .neo-cta,
  .neo-menu-actions .neo-language {
    width: auto;
  }
}

.neo-menu {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding-left: 0;
  margin: 0;
  align-items: center;
}

.neo-menu-link {
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.neo-menu-link i {
  color: var(--accent-purple);
  font-size: 0.85rem;
}

.neo-menu-link:hover,
.neo-menu-link.active {
  color: var(--text-dark);
}

.neo-cta {
  border-radius: var(--radius-btn);
  border: none;
  padding: 0.65rem 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-deep), var(--accent-gold));
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.neo-cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 25px 40px rgba(111, 84, 255, 0.35);
}

.neo-language .dropdown-toggle {
  border-radius: var(--radius-btn);
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
  background: #fff;
}

.neo-language .dropdown-menu {
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  padding: 0.5rem 0;
}

.neo-language .dropdown-menu a {
  color: var(--text-dark);
}

.neo-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3.5rem;
}

.neo-hero {
  margin: 0 auto 0.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(150deg, rgba(111, 85, 255, 0.05), rgba(255, 173, 56, 0.1), rgba(255, 255, 255, 0.5));
  box-shadow: var(--shadow-soft);
  padding: 0.5rem;
  overflow: hidden;
}

.neo-hero .carousel-inner {
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
}

.neo-hero img {
  border-radius: 1.2rem;
}

.neo-category {
  margin-top: 0.25rem;
  padding: 1rem 0.25rem 1.25rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(111, 85, 255, 0.15);
  box-shadow: 0 30px 60px rgba(87, 73, 151, 0.12);
}

.neo-chiplist {
  list-style: none;
  display: flex;
  gap: 0.55rem;
  padding: 0 0.75rem 0.5rem;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 0.75rem;
}

.neo-chip {
  flex: 0 0 auto;
}

.neo-chip-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.6rem 0.85rem;
  min-width: 84px;
  border-radius: 1.25rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(17, 12, 56, 0.06);
}

.neo-chip-link:hover:not(.active) {
  border-color: rgba(111, 85, 255, 0.3);
  background: rgba(255, 255, 255, 1);
  color: var(--text-dark);
}

.neo-chip-link.active {
  border-color: var(--accent-purple);
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 18px 30px rgba(111, 84, 255, 0.25);
}

.neo-chip-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--bg-panel-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 6px rgba(87, 73, 151, 0.15);
}

.neo-chip-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.neo-chip-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.neo-section-head {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.neo-section-head h2,
.neo-section-head h3 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.neo-seeall {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

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

.neo-grid-col {
}

.neo-card {
  background: var(--bg-panel);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(17, 12, 56, 0.08);
}

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

.neo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(111, 85, 255, 0.2);
}

.neo-copy {
  background: var(--bg-panel);
  padding: 2rem;
  border-radius: 1.6rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
}

.neo-copy h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.neo-copy h2 {
  font-size: 1.6rem;
  margin-top: 1.8rem;
}

.neo-copy h3 {
  margin-top: 1.4rem;
  font-size: 1.2rem;
}

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

.neo-copy li::marker {
  color: var(--accent-purple);
}

.neo-section-image {
  margin: 2rem auto;
  padding: 1rem;
  border-radius: 1.2rem;
  background: var(--bg-panel-muted);
  display: flex;
  justify-content: center;
}

.neo-section-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.neo-payments {
  margin-top: 2rem;
}

.neo-payments .col {
  border-radius: 0.9rem;
  background: var(--bg-panel);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(33, 24, 78, 0.08);
}

.neo-payments .col:hover {
  transform: translateY(-4px);
}

.neo-payments img {
  max-width: 70%;
  display: block;
  filter: saturate(0.1) brightness(0.9);
}

.neo-footer {
  margin-top: 3rem;
  text-align: center;
  color: var(--text-muted);
}

.neo-footer img {
  max-height: 40px;
  margin-top: 1rem;
}

.bg-primary {
  background-color: transparent !important;
}

@media (min-width: 992px) {
  .neo-page {
    padding-top: 0;
  }
  .neo-nav {
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .neo-menu {
    justify-content: flex-start;
  }

  .neo-hero {
    margin-top: 2rem;
  }

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