:root {
  --body-bg-color: #0c0d0d;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #0d0d0d;
  --link-color: #ffffff;
  --header-bg-color: #000000;
  --font-family: system-ui;
  --nav-link-color: #fcfcfc;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/images/movie-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color);
}
.content-area a {
 color: #d9a60f !important;
  text-decoration: none !important;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
  .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.error_page {
  min-height: 70vh;
}
    .footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}
.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}
.footer img {
        filter: brightness(0) invert(1);
      }
 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero-section {
  padding: 115px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section.gradient-bg {
  background: linear-gradient(135deg, var(--hero-gradient1), var(--hero-gradient2));
}
.hero-section .container {
  position: relative;
  z-index: 2;
}

  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.contact-email {
  color: var(--link-color);
  font-weight: 600;
  text-decoration: none;
}
.contact-email:hover {
  text-decoration: underline;
}
.contact-form-card,
.contact-info-card {
  background: var(--header-bg-color);
  color: var(--nav-link-color);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.contact-info-card h2 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--nav-link-color) !important;
}
.contact-info-item {
  margin-top: 18px;
}
.contact-info-item .label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 4px;
}
.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--nav-link-colo);
}
.contact-form-card .form-control {
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  padding: 0.55rem 0.75rem;
  background-color: #fff;
}
.contact-form-card .form-control::placeholder {
  color: #9ca3af;
}
.contact-form-card .form-control:focus {
  border-color: var(--hero-gradient1);
  box-shadow: 0 0 0 0.15rem rgba(22, 130, 149, 0.2);
}
.contact-submit-btn {
  background: linear-gradient(
    135deg,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
  border: 0;
  color: #fff !important;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.styled-section{
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 18px;
  isolation: isolate; 
}
.styled-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(255, 140, 0, .18), transparent 55%),
    radial-gradient(700px 400px at 85% 70%, rgba(255, 200, 0, .10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.55));
  pointer-events:none;
  z-index:-2;
}
.styled-section::after{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(255, 170, 0, 0.00) 0px,
      rgba(255, 170, 0, 0.00) 18px,
      rgba(255, 170, 0, 0.10) 19px,
      rgba(255, 170, 0, 0.00) 32px
    );
  filter: blur(0.3px);
  opacity: .65;
  transform: translate3d(-12%, -12%, 0) rotate(0.0001deg);
  animation: sectionShimmer 28s linear infinite;
  pointer-events:none;
  z-index:-1;
}
@keyframes sectionShimmer{
  0%   { transform: translate3d(-18%, -18%, 0) rotate(0.0001deg); }
  100% { transform: translate3d(18%, 18%, 0) rotate(0.0001deg); }
}
.styled-section h2{
  margin: 0 0 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 200, 0, .92); 
  text-shadow: 0 0 24px rgba(255, 170, 0, .18);
}
.styled-section > p{
  max-width: 900px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
.box-one{
  position: relative;
  padding: 20px 20px 18px;
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.42);
  border: 1px solid rgba(255, 170, 0, 0.18);
  box-shadow:
    0 10px 30px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.box-one::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(255, 180, 0, 0.00),
    rgba(255, 180, 0, 0.35),
    rgba(255, 180, 0, 0.00)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .75;
  pointer-events:none;
}
.box-one::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    rgba(255, 200, 0, 0.00) 0%,
    rgba(255, 200, 0, 0.14) 45%,
    rgba(255, 200, 0, 0.00) 70%
  );
  transform: translateX(-120%);
  filter: blur(.2px);
  opacity: .85;
  pointer-events:none;
  animation: boxSweep 4.6s ease-in-out infinite;
}
@keyframes boxSweep{
  0%   { transform: translateX(-120%); opacity: .15; }
  35%  { opacity: .85; }
  60%  { opacity: .35; }
  100% { transform: translateX(120%); opacity: .15; }
}
.box-one:hover{
  transform: translateY(-4px);
  border-color: rgba(255, 190, 0, 0.34);
  box-shadow:
    0 16px 44px rgba(0,0,0,.55),
    0 0 0 1px rgba(255, 170, 0, 0.10),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.box-one h3{
  margin: 0 0 8px;
  font-weight: 800;
  color: rgba(255, 170, 0, .95);
  text-shadow: 0 0 18px rgba(255, 160, 0, .15);
}
.box-one p{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
@media (max-width: 991.98px){
  .styled-section{ padding: 26px 18px; }
  .box-one{ padding: 18px 16px; }
}
.custom-section{
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 18px;
  isolation: isolate;
}
.custom-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 18% 22%, rgba(255, 160, 0, .16), transparent 58%),
    radial-gradient(740px 420px at 86% 78%, rgba(255, 210, 0, .10), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.58));
  z-index:-2;
  pointer-events:none;
}
.custom-section::after{
  content:"";
  position:absolute;
  inset:-45%;
  background:
    repeating-linear-gradient(
      118deg,
      rgba(255, 180, 0, 0.00) 0px,
      rgba(255, 180, 0, 0.00) 22px,
      rgba(255, 180, 0, 0.10) 23px,
      rgba(255, 180, 0, 0.00) 40px
    );
  opacity: .55;
  transform: translate3d(-18%, -18%, 0) rotate(0.0001deg);
  animation: quotesShimmer 36s linear infinite; 
  z-index:-1;
  pointer-events:none;
}
@keyframes quotesShimmer{
  0%   { transform: translate3d(-18%, -18%, 0) rotate(0.0001deg); }
  100% { transform: translate3d(18%, 18%, 0) rotate(0.0001deg); }
}
.quotes-header h2{
  margin: 0 0 10px;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-weight: 850;
  color: rgba(255, 200, 0, .92);
  text-shadow: 0 0 24px rgba(255, 160, 0, .16);
}
.quotes-header p{
  margin: 0 0 22px;
  max-width: 980px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}
.quotes-wrap{
  display: grid;
  gap: 18px;
}
.quotes-intro p,
.quotes-footer p{
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}
.quotes-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}
.quote-card{
  grid-column: span 12;
  position: relative;
  margin: 0;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(14, 14, 14, 0.44);
  border: 1px solid rgba(255, 170, 0, 0.18);
  box-shadow:
    0 12px 34px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.quote-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(255, 180, 0, 0.00),
    rgba(255, 180, 0, 0.34),
    rgba(255, 180, 0, 0.00)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .72;
  pointer-events:none;
}
.quote-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    rgba(255, 210, 0, 0.00) 0%,
    rgba(255, 210, 0, 0.12) 46%,
    rgba(255, 210, 0, 0.00) 72%
  );
  transform: translateX(-130%);
  opacity: .55;
  pointer-events:none;
  animation: quoteSweep 20s ease-in-out infinite; 
}
@keyframes quoteSweep{
  0%   { transform: translateX(-130%); opacity: .12; }
  35%  { opacity: .55; }
  60%  { opacity: .28; }
  100% { transform: translateX(130%); opacity: .12; }
}
.quote-card blockquote{
  margin: 0 0 10px;
  padding: 0 0 0 14px;
  border-left: 2px solid rgba(255, 180, 0, 0.42);
}
.quote-card blockquote p{
  margin: 0;
  color: rgba(255, 190, 0, .95);
  font-weight: 800;
  letter-spacing: .2px;
  text-shadow: 0 0 18px rgba(255, 170, 0, .12);
}
.quote-card figcaption p{
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}
.quote-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255, 190, 0, 0.34);
  box-shadow:
    0 18px 48px rgba(0,0,0,.58),
    0 0 0 1px rgba(255, 170, 0, 0.10),
    inset 0 1px 0 rgba(255,255,255,.06);
}
@media (min-width: 992px){
  .quote-card{ grid-column: span 4; }
}
@media (max-width: 991.98px){
  .custom-section{ padding: 26px 18px; }
  .quote-card{ padding: 16px 16px 14px; }
}
.custom-section-two{
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.6vw, 40px);
  border-radius: 24px;
  isolation: isolate;
  background:
    radial-gradient(1200px 720px at 50% 0%, rgba(255, 165, 0, .10), transparent 58%),
    radial-gradient(900px 520px at 0% 80%, rgba(255, 220, 0, .08), transparent 60%),
    radial-gradient(900px 520px at 110% 70%, rgba(255, 140, 0, .09), transparent 62%),
    linear-gradient(135deg, rgba(0,0,0,.92), rgba(10,10,10,.72)),
    radial-gradient(1100px 800px at 50% 50%, rgba(0,0,0,.25), rgba(0,0,0,.75));
  box-shadow:
    0 28px 90px rgba(0,0,0,.78),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.custom-section-two::before{
  content:"";
  position:absolute;
  inset:-60%;
  background:
    repeating-linear-gradient(
      70deg,
      rgba(255, 200, 0, 0.00) 0px,
      rgba(255, 200, 0, 0.00) 30px,
      rgba(255, 200, 0, 0.11) 31px,
      rgba(255, 200, 0, 0.00) 58px
    ),
    repeating-linear-gradient(
      155deg,
      rgba(255, 140, 0, 0.00) 0px,
      rgba(255, 140, 0, 0.00) 42px,
      rgba(255, 140, 0, 0.07) 43px,
      rgba(255, 140, 0, 0.00) 72px
    );
  opacity: .55;
  filter: blur(.4px);
  transform: translate3d(-14%, 12%, 0) rotate(0.0001deg);
  animation: cs2-threads 54s linear infinite; 
  pointer-events:none;
  z-index:-1;
}
@keyframes cs2-threads{
  0%   { transform: translate3d(-14%, 12%, 0) rotate(0.0001deg); }
  100% { transform: translate3d(14%, -12%, 0) rotate(0.0001deg); }
}
.custom-section-two::after{
  content:"";
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(closest-side at 20% 40%, rgba(255, 200, 0, .10), transparent 65%),
    radial-gradient(closest-side at 70% 60%, rgba(255, 140, 0, .08), transparent 68%);
  opacity: .7;
  filter: blur(18px);
  transform: translateX(-18%);
  animation: cs2-spot 26s ease-in-out infinite; 
  pointer-events:none;
  z-index:-2;
}
@keyframes cs2-spot{
  0%   { transform: translateX(-18%); opacity: .55; }
  50%  { transform: translateX(18%);  opacity: .75; }
  100% { transform: translateX(-18%); opacity: .55; }
}
.custom-section-two h2{
  margin: 40px 0 14px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: rgba(255, 210, 0, .95);
  text-shadow:
    0 0 22px rgba(255, 170, 0, .22),
    0 0 60px rgba(255, 140, 0, .10);
}
.custom-section-two h3{
  margin: 0 0 10px;
  font-weight: 850;
  color: rgba(255, 180, 0, .94);
  text-shadow: 0 0 16px rgba(255, 150, 0, .16);
}
.custom-section-two p{
  color: rgba(255,255,255,.80);
  line-height: 1.75;
}
.custom-section-two ul{
  list-style: none;
  margin: 14px 0 15px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.custom-section-two ul li{
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 16px;
  background: rgba(12,12,12,.45);
  border: 1px solid rgba(255, 180, 0, .16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 12px 34px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.custom-section-two ul li::before{
  content:"";
  position:absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.20), transparent 40%),
    linear-gradient(135deg, rgba(255, 220, 0, .95), rgba(255, 120, 0, .75));
  box-shadow:
    0 0 0 2px rgba(255, 200, 0, .10),
    0 0 18px rgba(255, 170, 0, .20);
}
.custom-section-two ul li::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    rgba(255, 210, 0, 0.00) 0%,
    rgba(255, 210, 0, 0.12) 48%,
    rgba(255, 210, 0, 0.00) 72%
  );
  transform: translateX(-140%);
  opacity: .45;
  pointer-events:none;
  animation: cs2-li-sweep 24s ease-in-out infinite; 
}
@keyframes cs2-li-sweep{
  0%   { transform: translateX(-140%); opacity: .10; }
  35%  { opacity: .45; }
  60%  { opacity: .22; }
  100% { transform: translateX(140%); opacity: .10; }
}
.custom-section-two ul li:hover{
  transform: translateY(-3px);
  border-color: rgba(255, 200, 0, .30);
  box-shadow:
    0 18px 48px rgba(0,0,0,.62),
    0 0 0 1px rgba(255, 180, 0, .10),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.custom-section-two ul li a{
  color: rgba(255, 210, 0, .95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 210, 0, .25);
}
.custom-section-two ul li a:hover{
  border-bottom-color: rgba(255, 210, 0, .55);
}
@media (max-width: 991.98px){
  .custom-section-two{
    padding: 26px 18px;
    border-radius: 18px;
  }
  .custom-section-two ul li{
    padding: 13px 14px 13px 42px;
  }
}
.fancy-section{
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5.5vw, 20px);
  border-radius: 28px;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(8,8,8,.88), rgba(2,2,2,.96)),
    radial-gradient(1400px 900px at 50% -10%, rgba(255, 140, 0, .12), transparent 60%);
  box-shadow:
    0 40px 120px rgba(0,0,0,.85),
    inset 0 0 0 1px rgba(255,180,0,.06);
}
.fancy-section::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(3px 3px at 10% 20%, rgba(255,180,0,.35), transparent 60%),
    radial-gradient(2px 2px at 30% 60%, rgba(255,140,0,.25), transparent 60%),
    radial-gradient(4px 4px at 55% 35%, rgba(255,200,0,.30), transparent 60%),
    radial-gradient(2px 2px at 70% 80%, rgba(255,160,0,.22), transparent 60%),
    radial-gradient(3px 3px at 85% 25%, rgba(255,190,0,.28), transparent 60%);
  opacity: .6;
  filter: blur(.3px);
  animation: ember-float 60s linear infinite;
  pointer-events:none;
  z-index:-1;
}
@keyframes ember-float{
  from { transform: translateY(0); }
  to   { transform: translateY(-120px); }
}
.fancy-section::after{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(closest-side at 40% 60%, rgba(0,0,0,.0), rgba(0,0,0,.65));
  opacity: .7;
  animation: shadow-drift 38s ease-in-out infinite;
  pointer-events:none;
  z-index:-2;
}
@keyframes shadow-drift{
  0%   { transform: translateX(-8%); }
  50%  { transform: translateX(8%); }
  100% { transform: translateX(-8%); }
}
.fancy-section h2{
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffb400;
  text-shadow:
    0 0 20px rgba(255,160,0,.35),
    0 0 60px rgba(255,120,0,.15);
}
.fancy-section h3{
  margin-bottom: 10px;
  font-weight: 800;
  color: #ff9800;
}
.fancy-section p{
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}
.fancy-section > div,
.fancy-section article,
.fancy-section section{
  position: relative;
  margin-top: 18px;
  padding: 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(20,20,20,.75), rgba(8,8,8,.95));
  border-left: 3px solid rgba(255,160,0,.55);
  box-shadow:
    0 18px 60px rgba(0,0,0,.7);
}
.fancy-section > div::before,
.fancy-section article::before,
.fancy-section section::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background:
    linear-gradient(120deg,
      transparent 30%,
      rgba(255,180,0,.10) 45%,
      transparent 60%);
  opacity:.35;
  pointer-events:none;
}
.fancy-section ul{
  list-style:none;
  padding:0;
  margin-top:16px;
  display:grid;
  gap:14px;
}
.fancy-section ul li{
  position:relative;
  padding:14px 18px 14px 40px;
  border-radius:14px;
  background: rgba(12,12,12,.75);
  box-shadow: inset 0 0 0 1px rgba(255,150,0,.10);
}
.fancy-section ul li::before{
  content:"";
  position:absolute;
  left:16px;
  top:50%;
  transform: translateY(-50%);
  width:4px;
  height:70%;
  border-radius:4px;
  background:
    linear-gradient(
      180deg,
      rgba(255,220,0,.9),
      rgba(255,120,0,.6),
      rgba(255,80,0,.3)
    );
  box-shadow: 0 0 14px rgba(255,140,0,.35);
}
.fancy-section > div:hover,
.fancy-section article:hover,
.fancy-section section:hover{
  transform: translateY(-3px);
  transition: transform .3s ease;
}
@media (max-width: 991.98px){
  .fancy-section{
    padding: 26px 18px;
    border-radius: 18px;
  }
}
/* ===== Navbar brand – extra small screens ===== */
@media (max-width: 399.98px){
  .navbar-brand{
    font-size: 0.9rem;      /* ако е текст */
    line-height: 1.1;
    padding: 4px 6px;
  }

  /* ако navbar-brand съдържа img */
  .navbar-brand img{
    max-height: 28px;
    width: auto;
  }
}
