:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #0d0d0d;
  --link-color: #bac9e9;
  --header-bg-color: #2c3d68;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --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;
}
  body {
  background: none;
  --color: rgba(114,114,114,0.3);
  background-color: #191a1a;
  background-image: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%, transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%, transparent),
                    linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%, transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%, transparent);
  background-size: 55px 55px;
}
h1{
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: .3px;
  margin: 0 0 16px;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(55,214,255,.95) 35%,
    rgba(164,108,255,.92) 70%,
    rgba(44,255,183,.80) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 14px rgba(55,214,255,.18),
    0 0 22px rgba(164,108,255,.14);
  position: relative;
  padding-bottom: 14px;
  animation: h1-in .75s ease-out both, h1-breathe 6.5s ease-in-out infinite;
}
h1::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height: 3px;
  width: min(640px, 92%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(55,214,255,0) 0%,
    rgba(55,214,255,.95) 22%,
    rgba(164,108,255,.95) 62%,
    rgba(44,255,183,.75) 100%
  );
  box-shadow:
    0 0 16px rgba(55,214,255,.20),
    0 0 22px rgba(164,108,255,.16);
}
h1::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height: 3px;
  width: min(640px, 92%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-60%);
  opacity:.75;
  animation: h1-shine 2.9s linear infinite;
}
@keyframes h1-in{
  from{ transform: translateY(10px); opacity:0; filter: blur(3px); }
  to  { transform: translateY(0);  opacity:1; filter: blur(0); }
}
@keyframes h1-breathe{
  0%,100%{ filter: saturate(1); }
  50%    { filter: saturate(1.12); }
}
@keyframes h1-shine{
  to{ transform: translateX(60%); }
}
h1 > span{
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,0));
  border-radius: 10px;
  padding: 2px 10px;
}
@media (prefers-reduced-motion: reduce){
  h1{ animation: none !important; }
  h1::before{ animation: none !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 h2 {
  display: inline-block;
  border-bottom: 2px dashed var(--heading-color);
  padding-bottom: 4px;
}
.content-area a {
  color: var(--link-color);
  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;
}
  .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: 115px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section.with-bg {
  background-image: url('/images/jpg');
  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, rgb(0, 0, 0));
  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;
}
@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");
}
.custom-section{
  --bg-0:#06070b;
  --bg-1:#0a0c14;
  --text:#e9eefc;
  --muted:#b9c2dd;
  --accent:#37d6ff;   
  --accent2:#a46cff;  
  --accent3:#2cffb7;  
  --radius:18px;
  position: relative;
  padding: clamp(22px, 3vw, 40px);
  margin: clamp(18px, 3vw, 34px) 0;
  color: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(55,214,255,.14), transparent 60%),
    radial-gradient(700px 380px at 86% 18%, rgba(164,108,255,.14), transparent 62%),
    radial-gradient(560px 320px at 60% 88%, rgba(44,255,183,.10), transparent 60%),
    linear-gradient(180deg, rgba(10,12,20,.92), rgba(6,7,11,.96));
  border: 1px solid rgba(120,140,200,.18);
  box-shadow:
    0 18px 55px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.custom-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.30;
  background:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(closest-side, rgba(0,0,0,.95), transparent 72%);
}
.custom-section::after{
  content:"";
  position:absolute;
  inset:-30%;
  pointer-events:none;
  background:
    radial-gradient(closest-side, rgba(55,214,255,.16), transparent 60%),
    radial-gradient(closest-side, rgba(164,108,255,.14), transparent 62%);
  filter: blur(18px);
  opacity:.55;
  animation: cs-ambient 10s ease-in-out infinite alternate;
}
@keyframes cs-ambient{
  0%   { transform: translate3d(-2%, -1%, 0) rotate(-2deg); }
  50%  { transform: translate3d( 2%,  2%, 0) rotate( 1deg); }
  100% { transform: translate3d( 1%, -2%, 0) rotate( 2deg); }
}
.custom-section :where(p, li){
  color: var(--muted);
  line-height: 1.75;
  text-wrap: pretty;
}
.custom-section h2{
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.12;
  font-size: clamp(28px, 3.2vw, 44px);
  color: transparent;
  background-image: linear-gradient(90deg, #ffffff, rgba(55,214,255,.95), rgba(164,108,255,.9));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 12px rgba(55,214,255,.18),
    0 0 22px rgba(164,108,255,.12);
  animation: cs-title-in .8s ease-out both;
}
@keyframes cs-title-in{
  from { transform: translateY(10px); opacity: 0; filter: blur(3px); }
  to   { transform: translateY(0);   opacity: 1; filter: blur(0); }
}
.custom-section h2::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: min(560px, 88%);
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(55,214,255,0) 0%,
      rgba(55,214,255,.95) 22%,
      rgba(164,108,255,.95) 62%,
      rgba(44,255,183,.75) 100%);
  box-shadow:
    0 0 16px rgba(55,214,255,.22),
    0 0 22px rgba(164,108,255,.18);
  overflow: hidden;
}
.custom-section h2::before{
  content:"";
  position:absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: min(560px, 88%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-60%);
  filter: blur(.2px);
  animation: cs-underline-sweep 2.8s linear infinite;
  opacity:.7;
}
@keyframes cs-underline-sweep{
  to { transform: translateX(60%); }
}
.custom-section h3{
  position: relative;
  margin: 22px 0 10px;
  padding-left: 14px;
  font-weight: 750;
  letter-spacing: .2px;
  line-height: 1.18;
  font-size: clamp(18px, 1.9vw, 26px);
  color: rgba(245,248,255,.96);
  text-shadow:
    0 0 10px rgba(55,214,255,.16),
    0 0 16px rgba(164,108,255,.10);
  animation: cs-subtitle-float 4.6s ease-in-out infinite;
}
@keyframes cs-subtitle-float{
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-2px); }
}
.custom-section h3::before{
  content:"";
  position:absolute;
  left: 0;
  top: .18em;
  bottom: .18em;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow:
    0 0 14px rgba(55,214,255,.28),
    0 0 18px rgba(164,108,255,.20);
  animation: cs-marker-pulse 1.8s ease-in-out infinite;
}
@keyframes cs-marker-pulse{
  0%,100% { opacity: .70; filter: saturate(1); }
  50%     { opacity: 1;   filter: saturate(1.25); }
}
.custom-section a{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(55,214,255,.35);
  transition: .2s ease;
}
.custom-section a:hover{
  color: rgba(164,108,255,.95);
  border-bottom-color: rgba(164,108,255,.55);
  text-shadow: 0 0 14px rgba(164,108,255,.18);
}
.custom-section .scanline,
.custom-section[data-scanline="true"]{
}
.custom-section[data-scanline="true"]::before{
  background:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.08) 1px, transparent 1px),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,.035) 0px,
      rgba(255,255,255,.035) 1px,
      transparent 3px,
      transparent 6px
    );
  opacity: .22;
}
.styled-section{
  --bg:#070910;
  --panel: rgba(12, 14, 26, .72);
  --text:#eef2ff;
  --muted:#b7c0dd;
  --a1:#ff4fd8;  
  --a2:#7c5cff;  
  --a3:#35d6ff;  
  --r: 20px;
  position: relative;
  padding: clamp(22px, 3vw, 44px);
  margin: clamp(18px, 3vw, 36px) 0;
  border-radius: var(--r);
  overflow: hidden;
  color: var(--text);
  background: linear-gradient(180deg, rgba(8,10,18,.92), rgba(6,7,11,.96));
  border: 1px solid rgba(170, 160, 255, .14);
  box-shadow:
    0 24px 70px rgba(0,0,0,.60),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.styled-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 460px at 15% 10%, rgba(255,79,216,.16), transparent 60%),
    radial-gradient(760px 420px at 88% 18%, rgba(124,92,255,.18), transparent 62%),
    radial-gradient(720px 420px at 55% 92%, rgba(53,214,255,.14), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 35%, rgba(255,255,255,.03));
  opacity: .95;
  filter: blur(.2px);
}
.styled-section::after{
  content:"";
  position:absolute;
  inset:-35%;
  pointer-events:none;
  background:
    conic-gradient(from 210deg at 40% 35%,
      rgba(255,79,216,.00),
      rgba(255,79,216,.14),
      rgba(124,92,255,.14),
      rgba(53,214,255,.12),
      rgba(255,79,216,.00)
    );
  filter: blur(26px);
  opacity: .45;
  animation: ss-aurora 12s ease-in-out infinite;
}
@keyframes ss-aurora{
  0%   { transform: translate3d(-2%, -2%, 0) rotate(-8deg) scale(1.02); }
  50%  { transform: translate3d( 3%,  2%, 0) rotate( 6deg) scale(1.05); }
  100% { transform: translate3d( 1%, -3%, 0) rotate(-4deg) scale(1.02); }
}
.styled-section{
  background-clip: padding-box;
}
.styled-section .ss-frame{
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  padding: 1px;
  background:
    linear-gradient(90deg, rgba(255,79,216,.65), rgba(124,92,255,.55), rgba(53,214,255,.55));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity:.55;
  filter: blur(.1px);
  animation: ss-border-shift 5.2s linear infinite;
}
@keyframes ss-border-shift{
  0%   { filter: hue-rotate(0deg); opacity: .48; }
  50%  { filter: hue-rotate(22deg); opacity: .62; }
  100% { filter: hue-rotate(0deg); opacity: .48; }
}
.styled-section :where(p, li){
  color: var(--muted);
  line-height: 1.75;
  text-wrap: pretty;
}
.styled-section h2{
  margin: 0 0 14px;
  font-weight: 850;
  letter-spacing: .2px;
  line-height: 1.12;
  font-size: clamp(26px, 3vw, 42px);
  color: transparent;
  background-image: linear-gradient(90deg, #fff, rgba(255,79,216,.92), rgba(53,214,255,.88));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 10px rgba(255,79,216,.16),
    0 0 18px rgba(53,214,255,.12);
  animation: ss-title-pop .75s ease-out both, ss-flicker 6.5s steps(1,end) infinite;
}
@keyframes ss-title-pop{
  from{ transform: translateY(12px) scale(.98); opacity:0; filter: blur(4px); }
  to  { transform: translateY(0)    scale(1);   opacity:1; filter: blur(0); }
}
@keyframes ss-flicker{
  0%, 92%, 100% { opacity: 1; }
  93% { opacity: .92; }
  94% { opacity: 1; }
  97% { opacity: .95; }
  98% { opacity: 1; }
}
.styled-section h2{
  position: relative;
  padding-bottom: 12px;
}
.styled-section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height: 2px;
  width: min(520px, 92%);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
}
.styled-section h2::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height: 2px;
  width: min(520px, 92%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--a1), var(--a2), var(--a3));
  box-shadow:
    0 0 14px rgba(255,79,216,.18),
    0 0 18px rgba(53,214,255,.14);
  transform-origin: left center;
  transform: scaleX(.18);
  animation: ss-underline-fill 2.6s ease-in-out infinite alternate;
  opacity:.9;
}
@keyframes ss-underline-fill{
  0%   { transform: scaleX(.12); filter: saturate(1); }
  100% { transform: scaleX(1);   filter: saturate(1.25); }
}
.styled-section h3{
  position: relative;
  display: inline-block;
  margin: 18px 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 750;
  font-size: clamp(16px, 1.7vw, 22px);
  color: rgba(245,248,255,.96);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 28px rgba(0,0,0,.40),
    0 0 0 1px rgba(124,92,255,.08) inset;
  overflow:hidden;
}
.styled-section h3::after{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,79,216,.20) 35%,
    rgba(53,214,255,.18) 55%,
    transparent 75%
  );
  transform: translateX(-40%) rotate(18deg);
  animation: ss-chip-shimmer 3.2s ease-in-out infinite;
  pointer-events:none;
}
@keyframes ss-chip-shimmer{
  0%   { transform: translateX(-55%) rotate(18deg); opacity: .55; }
  50%  { transform: translateX( 15%) rotate(18deg); opacity: .85; }
  100% { transform: translateX( 55%) rotate(18deg); opacity: .55; }
}
.styled-section a{
  color: rgba(53,214,255,.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(53,214,255,.35);
  transition: .2s ease;
}
.styled-section a:hover{
  color: rgba(255,79,216,.95);
  border-bottom-color: rgba(255,79,216,.55);
  text-shadow: 0 0 14px rgba(255,79,216,.16);
}
@media (prefers-reduced-motion: reduce){
  .styled-section::after,
  .styled-section h2,
  .styled-section h2::before,
  .styled-section h3::after,
  .styled-section .ss-frame{
    animation: none !important;
  }
}
.page-linking{
  --bg:#070910;
  --panel:#0b0e1a;
  --text:#eef2ff;
  --muted:#b7c0dd;
  --a1:#35d6ff; 
  --a2:#a46cff; 
  --a3:#2cffb7; 
  position: relative;
  padding: 40px 15px;
  border-radius: 20px;
  overflow: hidden;
}
.page-linking::before{
  content:"";
  position:absolute;
  inset:-30%;
  pointer-events:none;
  background:
    radial-gradient(closest-side, rgba(53,214,255,.20), transparent 60%),
    radial-gradient(closest-side, rgba(164,108,255,.18), transparent 62%);
  filter: blur(26px);
  opacity:.45;
  animation: pl-ambient 9s ease-in-out infinite alternate;
}
@keyframes pl-ambient{
  from{ transform: translate(-2%, -1%) rotate(-2deg); }
  to  { transform: translate( 2%,  2%) rotate( 2deg); }
}
.page-linking h3{
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: .3px;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    #ffffff,
    rgba(53,214,255,.95),
    rgba(164,108,255,.92)
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 14px rgba(53,214,255,.18),
    0 0 22px rgba(164,108,255,.14);
  animation: pl-title-in .7s ease-out both;
}
@keyframes pl-title-in{
  from{ opacity:0; transform: translateY(10px); filter: blur(3px); }
  to  { opacity:1; transform: translateY(0);  filter: blur(0); }
}
.page-linking h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  height:3px;
  width:min(420px, 90%);
  border-radius:999px;
  background: linear-gradient(90deg, var(--a1), var(--a2), var(--a3));
  box-shadow:
    0 0 16px rgba(53,214,255,.22),
    0 0 20px rgba(164,108,255,.18);
}
.page-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.page-list li{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 14px 38px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-list li:hover{
  transform: translateY(-4px);
  box-shadow:
    0 22px 52px rgba(0,0,0,.65),
    0 0 0 1px rgba(53,214,255,.18) inset;
}
.page-list li::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(53,214,255,.22),
    rgba(164,108,255,.22),
    transparent 70%
  );
  opacity:0;
  transition: opacity .25s ease;
}
.page-list li:hover::before{
  opacity:1;
}
.page-list a{
  display:block;
  height:100%;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.page-list a::after{
  content:"→";
  position:absolute;
  right:18px;
  top:50%;
  transform: translateY(-50%) translateX(-4px);
  opacity:.0;
  color: var(--a1);
  transition: .25s ease;
}
.page-list li:hover a::after{
  opacity:1;
  transform: translateY(-50%) translateX(0);
}
.page-list li:hover a{
  text-shadow:
    0 0 12px rgba(53,214,255,.18),
    0 0 18px rgba(164,108,255,.14);
}
@media (prefers-reduced-motion: reduce){
  .page-linking::before,
  .page-linking h3{
    animation: none !important;
  }
  .page-list li{
    transition: none;
  }
}


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




  .newsletter-sidebar{
  --bg:#070910;
  --panel: rgba(12, 14, 26, .75);
  --text:#eef2ff;
  --muted:#b7c0dd;
  --a1:#35d6ff; 
  --a2:#a46cff; 
  --a3:#2cffb7; 
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(520px 260px at 10% 8%, rgba(53,214,255,.16), transparent 60%),
    radial-gradient(520px 260px at 90% 12%, rgba(164,108,255,.16), transparent 62%),
    linear-gradient(180deg, rgba(10,12,22,.94), rgba(6,7,11,.98));
  border: 1px solid rgba(160,170,255,.16);
  box-shadow:
    0 20px 55px rgba(0,0,0,.60),
    inset 0 1px 0 rgba(255,255,255,.05);
}


.newsletter-head{
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}
.newsletter-head h3{
  margin: 0 0 8px;
  font-weight: 850;
  letter-spacing: .2px;
  font-size: 20px;
  color: transparent;
  background-image: linear-gradient(90deg, #fff, rgba(53,214,255,.95), rgba(164,108,255,.9));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 12px rgba(53,214,255,.16),
    0 0 18px rgba(164,108,255,.12);
}
.newsletter-head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.newsletter-form{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.newsletter-form input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--text);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  outline: none;
  transition: .2s ease;
}
.newsletter-form input::placeholder{
  color: rgba(183,192,221,.75);
}
.newsletter-form input:focus{
  border-color: rgba(53,214,255,.35);
  box-shadow:
    0 0 0 4px rgba(53,214,255,.10),
    0 0 18px rgba(53,214,255,.12);
}
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
.nl-btn{
  position: relative;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color: rgba(238,242,255,.92);
  font-weight: 800;
  letter-spacing: .3px;
  cursor: not-allowed;              
  user-select: none;
  opacity: .95;
  box-shadow:
    0 14px 34px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}
.nl-btn::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(53,214,255,.75), rgba(164,108,255,.65), rgba(44,255,183,.55));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .55;
  animation: nl-border 5.2s linear infinite;
  pointer-events:none;
}

.nl-btn .nl-btn-glow{
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(closest-side, rgba(53,214,255,.18), transparent 60%),
    radial-gradient(closest-side, rgba(164,108,255,.14), transparent 62%);
  filter: blur(20px);
  opacity:.55;
  animation: nl-glow 2.8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes nl-glow{
  0%,100%{ transform: translate(-2%, -1%); opacity:.45; }
  50%    { transform: translate( 2%,  2%); opacity:.70; }
}
.nl-btn:hover{
  box-shadow:
    0 18px 44px rgba(0,0,0,.62),
    0 0 0 1px rgba(53,214,255,.18) inset;
}
.newsletter-fineprint{
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(183,192,221,.75);
  line-height: 1.45;
}