

:root {
  --body-bg-color: #000000;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #951a16;
  --hero-gradient2: #5e0b0b;
  --footer-bg-color: #0d0d0d;
  --link-color: #dbe0e9;
  --header-bg-color: #ffffff;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-image: url('/images/stage-chairs-bg.webp');
  background-repeat: no-repeat;  
  background-size: cover;          
  background-position: center;       
  background-attachment: fixed;     
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--body-text-color) !important;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.555); 
  z-index: -1;
}

  
/* H1 - white, frosted/glas background + animated "thick decorative" letter effect */
h1{
  /* requested font-size override */
  font-size: clamp(2rem, 4vw, 2.5rem) !important;

  /* visual */
  color: #ffffff;
  display: inline-block;                 /* keeps glass bg tight around the text */
  padding: .35em .6em;                   /* cosy glass padding */
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.03) 100%
  );                                      /* subtle transparent glass */
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.02);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);

  /* decorative thick-letter appearance */
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  position: relative;
  z-index: 1;

  /* faux-stroke + base depth */
  -webkit-text-stroke: 1px rgba(0,0,0,0.28);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.03),    /* subtle highlight */
    0 2px 6px rgba(0,0,0,0.55);        /* depth shadow */

  /* animate the "thickening / ornamental" effect */
  animation: thicken-letters 2.8s ease-in-out infinite;
  transform-origin: center;
  will-change: text-shadow, transform;
}



/* Keyframes - animate text-shadow & slight scale to simulate letters getting "thicker/ornamented" */
@keyframes thicken-letters{
  0%{
    transform: scale(1);
    text-shadow:
      0 1px 0 rgba(255,255,255,0.03),
      0 2px 6px rgba(0,0,0,0.55);
    -webkit-text-stroke: 1px rgba(0,0,0,0.28);
  }
  40%{
    transform: scale(1.02) translateY(-1px);
    text-shadow:
      0 1px 0 rgba(255,255,255,0.045),
      0 3px 10px rgba(0,0,0,0.6),
      0 0 12px rgba(16,110,234,0.03); /* faint glow matching site blue */
    -webkit-text-stroke: 1.6px rgba(0,0,0,0.30);
  }
  70%{
    transform: scale(1.01);
    text-shadow:
      0 1px 0 rgba(255,255,255,0.04),
      0 4px 14px rgba(0,0,0,0.62),
      0 0 18px rgba(225,36,84,0.02); /* faint glow matching site red */
    -webkit-text-stroke: 1.8px rgba(0,0,0,0.32);
  }
  100%{
    transform: scale(1);
    text-shadow:
      0 1px 0 rgba(255,255,255,0.03),
      0 2px 6px rgba(0,0,0,0.55);
    -webkit-text-stroke: 1px rgba(0,0,0,0.28);
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce){
  h1{
    animation: none;
    transition: none;
  }
  h1::after{
    transform: none;
  }
}

/* Small-screen tweaks */
@media (max-width: 480px){
  h1{
    padding: .28em .5em;
    border-radius: 10px;
  }
  h1::after{
    bottom: -0.5em;
    height: 5px;
    left: 8%;
    right: 8%;
  }
}

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) !important;
}



.content-area a {
  color: #ff7575 !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-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;
}
  .twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.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;
}

 .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: 155px 0 50px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url('/images/stage-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.068));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

  
@media (max-width: 768px) {
  .hero-section {
    padding: 77px 0;
  }
  
}
  .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;
}
  /* Mobile nav */
@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;
  }
}

            



:root{
  --section-padding: 30px 20px;
  --accent-1: #e12424;   /* червено (site accent) */
  --accent-2: #106EEA;   /* синьо (site accent) */
  --muted: rgba(255,255,255,0.9);
  --glass-bg: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  --glass-border: linear-gradient(120deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  --overlay: rgba(0,0,0,0.45);
  --radius: 16px;
  --shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* Основна секция - стъклен (frosted) фон върху тъмна снимка */
.styled-section{
  position: relative;
  padding: var(--section-padding);
  margin: 60px 0;
  color: var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px) saturate(120%); /* фрост ефект */
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

/* Ако искаш допълнителен тъмен overlay за контраст с фонова снимка */
.styled-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* лека рамка с градиент (стъклен кант) */
.styled-section::after{
  content: "";
  position: absolute;
  inset: 1px;
  margin: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  z-index: 1;
  pointer-events: none;
}

/* Вътрешното съдържание стои над ефектите */
.styled-section > *{
  position: relative;
  z-index: 2;
}

/* H2 - голямо, ясно и с градиентна underline червено->синьо */
.styled-section h2{
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--muted);
  margin: 0 0 14px;
  position: relative;
  padding-bottom: 14px;
  display: inline-block;
  letter-spacing: .2px;
}

/* декоративна underline линия — от синьо към червено */
.styled-section h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 7px;
  width: 72%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  transform: translateY(8px) skewX(-6deg);
  opacity: 0.96;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(16,110,234,0.06), 0 6px 18px rgba(225,36,84,0.04);
}

/* H3 - цветен акцент с кръгъл "лейбъл" вляво, стъклена малка икона */
.styled-section h3{
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  color: var(--accent-1);
  margin: 22px 0 10px;
  position: relative;
  font-weight: 700;
  padding-left: 64px;
  text-transform: none;
}

/* кръгла икона/лейбъл за H3 — синьо-червен градиент */
.styled-section h3::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16,110,234,0.95), rgba(225,36,84,0.95));
  box-shadow: 0 10px 26px rgba(16,110,234,0.12), inset 0 -6px 18px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 3;
}

/* ако искаш символ в кръга - използвай псевдоелемент с content (примерно икона) */
.styled-section h3[data-icon]:before{
  content: attr(data-icon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  font-weight: 700;
}

/* Текст */
.styled-section p{
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 1rem;
}

/* Малка декоративна лента/таг */
.styled-section .small-title{
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.75);
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.03);
}

/* Pull-quote със стъклена рамка и червена линия */
.styled-section .pull-quote{
  border-left: 4px solid var(--accent-1);
  padding-left: 16px;
  margin: 18px 0;
  font-style: italic;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
  padding: 14px 18px;
  border-radius: 10px;
  color: rgba(255,255,255,0.94);
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

/* Card-like блокчета върху стъклен фон */
.styled-section .card-like{
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}

/* CTA бутон — градиент синьо->червено за видим accent */
.styled-section .btn-accent{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(16,110,234,0.12);
  transition: transform .16s ease, box-shadow .16s ease;
  border: 1px solid rgba(255,255,255,0.04);
}
.styled-section .btn-accent:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(225,36,84,0.14);
}

/* Responsive - оптимизация за мобилни */
@media (max-width: 767px){
  :root{ --section-padding: 32px; }
  .styled-section{ padding: var(--section-padding); margin: 36px 0; border-radius: 12px; }
  .styled-section h2{ font-size: 1.6rem; }
  .styled-section h3{ padding-left: 56px; font-size: 1.15rem; }
  .styled-section h3::before{ width: 42px; height: 42px; }
}


  .section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.199), rgba(0, 0, 0, 0.5)), url('/images/stage-bg.webp');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 40px;
    border: 1px solid #2c3e50;
}
.section-wallets h2 {
    color: #b9c2e7; 
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e7e4e4;
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}
.section-wallets h3 {
    color: #ffffff; 
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #2c3e50; 
    color: #fff;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #dadada; 
}
.section-wallets ul li::before {
    content: "✔"; 
    font-size: 1.5rem;
    color: #e2e2e2; 
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #ebebeb; 
}
@media (max-width: 768px) {
    .section-wallets {
        padding: 40px 20px;
    }
    .section-wallets h2 {
        font-size: 2rem;
    }
    .section-wallets h3 {
        font-size: 1.4rem;
    }
    .section-wallets ul li {
        font-size: 1rem;
    }
}



:root{
  --accent-1: #e12424; /* червено */
  --accent-2: #106EEA; /* синьо */
  --muted: rgba(255,255,255,0.9);
  --glass-bg: rgba(255,255,255,0.02);
  --radius: 16px;
  --shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* Основна секция с стъклен фон и тъмен overlay */
.custom-section{
  position: relative;
  padding: 60px 30px;
  margin: 60px 0;
  border-radius: var(--radius);
  color: var(--muted);
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

/* Анимирани движещи се линии на фона */
.custom-section::before,
.custom-section::after{
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(16,110,234,0.05),
    rgba(16,110,234,0.05) 2px,
    rgba(225,36,84,0.05) 2px,
    rgba(225,36,84,0.05) 4px
  );
  z-index: 0;
  animation: move-lines 20s linear infinite;
  pointer-events: none;
  transform: rotate(0deg);
}

.custom-section::after{
  animation-duration: 35s;
  opacity: 0.5;
}

/* Overlay за контраст с фонова снимка */
.custom-section > *{
  position: relative;
  z-index: 2;
}

/* H2 - декоративно с градиент underline */
.custom-section h2{
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--muted);
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
}

.custom-section h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  transform: translateY(6px) skewX(-6deg);
  opacity: 0.95;
}

/* H3 - с цветен кръгъл акцент вляво */
.custom-section h3{
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  color: var(--accent-1);
  margin: 22px 0 12px;
  font-weight: 700;
  position: relative;
  padding-left: 60px;
}

.custom-section h3::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Параграфи */
.custom-section p{
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Pull-quote */
.custom-section .pull-quote{
  border-left: 4px solid var(--accent-1);
  padding-left: 16px;
  margin: 18px 0;
  font-style: italic;
  background: rgba(255,255,255,0.02);
  padding: 14px 18px;
  border-radius: 10px;
  color: rgba(255,255,255,0.95);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Анимация на линиите */
@keyframes move-lines{
  0%{ transform: translate(0,0) rotate(0deg);}
  50%{ transform: translate(-50px,50px) rotate(180deg);}
  100%{ transform: translate(0,0) rotate(360deg);}
}

/* Responsive */
@media (max-width: 767px){
  .custom-section{ padding: 32px 18px; margin: 40px 0; border-radius: 12px; }
  .custom-section h2{ font-size: 1.6rem; }
  .custom-section h3{ padding-left: 50px; font-size: 1.15rem; }
  .custom-section h3::before{ width: 38px; height: 38px; }
}



  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }







  :root{
  --site-red: #d80808;
  --site-blue: #106EEA;
  --muted-white: rgba(255,255,255,0.92);
  --muted-grey: rgba(255,255,255,0.75);
  --glass-bg: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  --card-radius: 14px;
  --glass-border: rgba(255,255,255,0.04);
  --drop-shadow: 0 12px 30px rgba(0,0,0,0.6);
}


/* Sidebar wrapper - glassy card with subtle blue-red accent */
.page-linking{
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 20px;
  margin: 18px 0;
  color: var(--muted-white);
  box-shadow: var(--drop-shadow);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  position: relative;
  overflow: hidden;
}

/* decorative gradient corner accents */
.page-linking::before,
.page-linking::after{
  content: "";
  position: absolute;
  width: 140%;
  height: 40%;
  left: -20%;
  transform: rotate(-12deg);
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
.page-linking::before{
  top: -6%;
  background: linear-gradient(90deg, var(--site-blue), transparent 60%);
}
.page-linking::after{
  bottom: -6%;
  transform: rotate(12deg);
  background: linear-gradient(90deg, transparent 40%, var(--site-red));
}

/* H2 styling - decorative and prominent */
.page-linking h2{
  position: relative;
  z-index: 2;
  margin: 0 0 12px 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--muted-white);
  letter-spacing: 0.4px;
  padding-bottom: 10px;
  display: inline-block;
}

/* underline with split gradient (blue -> red) */
.page-linking h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 68%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--site-blue), var(--site-red));
  transform: translateY(8px) skewX(-6deg);
  opacity: 0.98;
  z-index: 2;
}

/* list reset and layout */
.sidebar-page-list{
  list-style-type: none;
  margin: 0;
  padding: 6px 0 0 0;
  position: relative;
  z-index: 2;
}

/* individual items - card-like links with icon pill */
.sidebar-page-list li{
  margin: 10px 0;
}

/* link base */
.sidebar-page-list a{
  display: block;
  text-decoration: none;
  color: var(--muted-white);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
  padding: 12px 14px 12px 56px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.02);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  font-weight: 600;
  line-height: 1.25;
}



/* hover / focus effects - subtle lift and color glow */
.sidebar-page-list a:hover,
.sidebar-page-list a:focus{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(16,110,234,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  color: white;
}

/* when hovering, make the left pill glow with matching tint */
.sidebar-page-list a:hover::before,
.sidebar-page-list a:focus::before{
  box-shadow: 0 10px 30px rgba(16,110,234,0.14), 0 0 18px rgba(225,36,84,0.06);
  transform: translateY(-50%) scale(1.05);
}

/* active/current page visual */
.sidebar-page-list a.active{
  background: linear-gradient(90deg, rgba(16,110,234,0.08), rgba(225,36,84,0.06));
  border: 1px solid rgba(16,110,234,0.12);
  box-shadow: 0 20px 50px rgba(16,110,234,0.06);
  color: white;
}

/* link text truncation for narrow sidebars */
.sidebar-page-list a span{
  display: inline-block;
  max-width: calc(100% - 90px);
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* small helper - show short descriptive label under links (optional) */
.sidebar-page-list li .link-desc{
  display: block;
  margin-top: 6px;
  margin-left: 56px;
  font-size: 0.85rem;
  color: var(--muted-grey);
  line-height: 1.15;
}

/* responsive adjustments for mobile */
@media (max-width: 767px){
  .page-linking{
    padding: 16px;
    margin: 14px 0;
    border-radius: 12px;
  }
  .page-linking h2{ font-size: 1.03rem; }
  .page-linking h2::after{ width: 56%; height: 5px; transform: translateY(6px) skewX(-6deg); }
  .sidebar-page-list a{
    padding: 10px 12px 10px 52px;
    border-radius: 10px;
    font-size: 0.95rem;
  }
  .sidebar-page-list a::before{ left: 10px; width: 32px; height: 32px; }
  .sidebar-page-list a::after{ right: 10px; }
  .sidebar-page-list li .link-desc{ margin-left: 52px; font-size: 0.82rem; }
}

.sponsor-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.sponsor-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 95%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--site-blue), var(--site-red));
    transform: translateY(8px) skewX(-6deg);
    opacity: 0.98;
    z-index: 2;
}


