:root {
  --chrome-bg: #0f0b1b;
  --chrome-surface: rgba(25, 17, 43, .9);
  --chrome-line: rgba(240, 171, 252, .2);
  --chrome-text: #f4eafe;
  --chrome-muted: #b9aec9;
  --chrome-pink: #f0abfc;
  --chrome-purple: #c026d3;
  --chrome-blue: #8b5cf6;
  --chrome-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: .72rem clamp(1rem, 3vw, 2rem);
  background:
    linear-gradient(115deg, rgba(23, 14, 39, .97), rgba(12, 12, 28, .92) 58%, rgba(30, 12, 48, .96));
  border-bottom: 1px solid var(--chrome-line) !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -1px;
  left: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 171, 252, .75), rgba(192, 38, 211, .7), transparent);
  pointer-events: none;
}
.navbar > .container {
  width: 100%;
  max-width: 1500px;
  min-height: 58px;
  gap: 1rem;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: .36rem .72rem;
  border: 1px solid rgba(240, 171, 252, .2);
  border-radius: 16px;
  background: rgba(8, 6, 17, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 22px rgba(0, 0, 0, .16);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}
.navbar-brand:hover {
  background: rgba(192, 38, 211, .14);
  border-color: rgba(240, 171, 252, .5);
  transform: translateY(-1px);
  text-decoration: none;
}
.navbar-brand img {
  height: clamp(38px, 3.1vw, 48px);
  width: auto;
  filter: drop-shadow(0 5px 12px rgba(192, 38, 211, .34));
  transition: filter .28s ease;
}
.navbar-brand:hover img {
  filter: drop-shadow(0 6px 15px rgba(240, 171, 252, .48));
}
.navbar-nav {
  align-items: center;
  gap: .32rem;
}
.navbar-nav .nav-item {
  margin: 0;
}
.navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .58rem .82rem;
  color: var(--chrome-muted) !important;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  right: 22%;
  bottom: 4px;
  left: 22%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--chrome-pink), var(--chrome-purple));
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .25s ease, transform .25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(192, 38, 211, .3), rgba(139, 92, 246, .2));
  border-color: rgba(240, 171, 252, .34);
  box-shadow: 0 8px 22px rgba(83, 31, 116, .28), inset 0 1px 0 rgba(255, 255, 255, .1);
  transform: translateY(-1px);
  text-decoration: none;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after,
.navbar-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.breadcrumb-section {
  background: #160d1a;
  border-bottom: 1px solid rgba(240, 171, 252, .14);
  padding: .75rem 0;
}
.breadcrumb-section .container {
  max-width: 1500px;
}
.breadcrumb-section .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  background: transparent;
}
.breadcrumb-section .breadcrumb-item,
.breadcrumb-section .breadcrumb-item a {
  color: var(--chrome-muted);
  font-size: .88rem;
}
.breadcrumb-section .breadcrumb-item a:hover {
  color: var(--chrome-pink);
  text-decoration: none;
}
.breadcrumb-section .breadcrumb-item.active {
  color: var(--chrome-pink);
}
.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
  color: #807491;
  content: "›";
}
.navbar-toggler {
  width: 46px;
  height: 46px;
  padding: .55rem;
  border: 1px solid rgba(240, 171, 252, .35) !important;
  border-radius: 14px;
  background: rgba(192, 38, 211, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.navbar-toggler:hover,
.navbar-toggler:focus {
  background: rgba(192, 38, 211, .22);
  box-shadow: 0 0 0 .2rem rgba(192, 38, 211, .16);
}
@media (max-width: 1199.98px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .navbar.navbar-expand-lg .navbar-collapse:not(.show) {
    display: none !important;
  }
  .navbar.navbar-expand-lg .navbar-collapse.show {
    display: block !important;
    margin-top: .8rem;
    padding: .5rem;
    border: 1px solid rgba(240, 171, 252, .18);
    border-radius: 18px;
    background: rgba(12, 9, 24, .96);
    box-shadow: var(--chrome-shadow);
  }
  .navbar-nav {
    align-items: stretch;
    gap: .2rem;
  }
  .navbar-nav .nav-link {
    display: flex;
    min-height: 44px;
    border-radius: 12px;
  }
}
footer,
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(3.5rem, 6vw, 6rem);
  padding: clamp(3.4rem, 6vw, 5.5rem) 0 1.35rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(192, 38, 211, .2), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(109, 40, 217, .16), transparent 34%),
    linear-gradient(180deg, #171027 0%, #0d0b17 58%, #090811 100%);
  border-top: 1px solid rgba(240, 171, 252, .22);
  box-shadow: 0 -18px 45px rgba(0, 0, 0, .18);
}
footer::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--chrome-pink), var(--chrome-purple), transparent);
  opacity: .8;
}
footer::after,
.site-footer::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -70%;
  width: 55%;
  height: 130%;
  border: 1px solid rgba(240, 171, 252, .08);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}
.news-page .news-section {
  padding-bottom: 3.5rem;
}
.news-page footer,
.news-page .site-footer {
  margin-top: 0;
}
footer > .container,
.site-footer > .container {
  position: relative;
  z-index: 1;
}
footer > .container > .row {
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: 2.2rem 2.25rem;
  margin: 0 !important;
}
footer > .container > .row > [class*="col-"] {
  width: auto !important;
  max-width: none;
  flex: none !important;
  padding: 0 !important;
}
.footer-brand {
  margin-bottom: 0;
}
.footer-brand > a {
  display: inline-flex;
  align-items: center;
  padding: .45rem .7rem;
  border: 1px solid rgba(240, 171, 252, .2);
  border-radius: 15px;
  background: rgba(8, 6, 17, .3);
}
.footer-brand img {
  height: 46px !important;
  width: auto;
  filter: drop-shadow(0 5px 14px rgba(192, 38, 211, .3));
}
.footer-brand > p:first-of-type {
  max-width: 470px;
  margin: 1.2rem 0 1rem;
  color: var(--chrome-muted) !important;
  font-size: .93rem;
  line-height: 1.85;
}
.footer-brand > p[style] {
  margin-top: 1rem;
  color: #a99bbd !important;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.1rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 .78rem;
  color: #f7e9ff;
  font-size: .78rem;
  font-weight: 700;
  border: 1px solid rgba(240, 171, 252, .24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(192, 38, 211, .22), rgba(109, 40, 217, .14));
}
.footer-heading {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: .1rem 0 1rem;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.footer-heading::before {
  content: "";
  width: 25px;
  height: 3px;
  flex: 0 0 25px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--chrome-pink), var(--chrome-purple));
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: .25rem;
}
.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  padding: .34rem 0;
  color: var(--chrome-muted) !important;
  font-size: .9rem;
  transition: color .25s ease, transform .25s ease;
}
.footer-links a::before {
  content: "›";
  color: var(--chrome-pink);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity .25s ease, transform .25s ease;
}
.footer-links a:hover,
.footer-links a.active,
.footer-links a.active-link {
  color: #fff !important;
  text-decoration: none;
  transform: translateX(3px);
}
.footer-links a:hover::before,
.footer-links a.active::before,
.footer-links a.active-link::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact p {
  color: var(--chrome-muted) !important;
  font-size: .9rem;
  line-height: 1.75;
}
.footer-contact p i {
  color: var(--chrome-pink) !important;
}
.footer-responsible-note {
  margin-top: 1rem;
  padding: .6rem .9rem;
  color: #fca5a5 !important;
  font-size: .82rem !important;
  line-height: 1.6;
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
  border-radius: 8px;
}
.footer-email-text,
.footer-email-text a {
  color: #e9d5ff !important;
}
.footer-divider {
  margin: 2.3rem 0 1.2rem !important;
  border-top: 1px solid rgba(240, 171, 252, .14) !important;
}
.footer-copyright {
  margin: 0;
  color: #9185a5 !important;
  font-size: .82rem;
  line-height: 1.7;
  text-align: center;
}
.footer-copyright span {
  color: var(--chrome-pink) !important;
}
@media (max-width: 991.98px) {
  footer > .container > .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer > .container > .row > :first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767.98px) {
  .navbar {
    padding: .56rem .75rem;
  }
  .navbar > .container {
    min-height: 56px;
    gap: .55rem;
  }
  .navbar-brand {
    padding: .28rem .5rem;
    border-radius: 13px;
  }
  .navbar-brand img {
    height: 36px;
  }
  footer > .container > .row {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }
  footer > .container > .row > :first-child {
    grid-column: auto;
  }
  .footer-brand > p:first-of-type {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .navbar-brand,
  .navbar-brand img,
  .navbar-nav .nav-link,
  .footer-links a {
    transition: none;
  }
}
