:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #050505;
  --heading-color: #580707;
  --hero-gradient1: #ffffff;
  --hero-gradient2: #ffffff;
  --footer-bg-color: #5a0707;
  --link-color: #c2c1bd;
  --header-bg-color: #5a0707;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #f8f7f7;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: "Playfair Display", "Didot", "Bodoni MT", serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
  linear-gradient(rgba(248, 248, 248, 0.87), rgba(243, 243, 243, 0.877)),
    url("/images/theathre-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 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color);
}
.content-area a {
  color: var(--link-color) !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;
}
      .twitter-tweet {
  width: 279px !important;
}
.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}
.footer {
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  border-top: 1px solid var(--link-color);
}
.footer a {
  text-decoration: none;
  color: var(--footer-text-color) !important;
}
.footer-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  position: relative;
  color: var(--footer-text-color) !important;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  padding-left: 6px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  border: 0;
  outline: 0;
  background: color-mix(in srgb, var(--footer-bg-color) 80%, white 20%);
  color: var(--footer-text-color);
}
.newsletter-form input::placeholder {
  color: var(--footer-text-color);
}
.newsletter-form button {
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  border: 0;
  font-weight: 600;
  background: var(--link-color);
  color: var(--footer-text-color);
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background: color-mix(in srgb, var(--link-color) 80%, white 20%);
}
.footer-divider {
  margin: 1.5rem 0;
  border-color: var(--link-color);
}
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 17px;
}
.social-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--footer-text-color);
  background-color: color-mix(in srgb, var(--footer-bg-color), white 20%);
  font-size: 1.2rem;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.social-icons span:hover {
  background: linear-gradient(
    135deg,
    var(--link-color),
    var(--footer-text-color)
  );
  transform: translateY(-2px);
} 
 .navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: var(--header-bg-color) !important;
  position: sticky; top: 0; z-index: 1020;
}
.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.246);
}
.hero-section.with-bg {
  background-image: url("/images/theathre-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, 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: 60px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  padding: 0 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--link-color) !important;
  transform: translateY(-1px);
}
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--link-color);
}
@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-container {
  margin: 40px auto;
  border-radius: 8px;
  color: black !important;
}
@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-container .form {
  width: 440px;
  height: 510px;
  background: #E6E6E6;
  border-radius: 8px;
  box-shadow: 0 0 40px -10px #000;
  padding: 20px 30px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.contact-container h2 {
  margin: 10px 0;
  padding-bottom: 10px;
  color: var(--hero-gradient1) !important;
  border-bottom: 3px solid var(--hero-gradient2);
}
.contact-container input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: none;
  outline: none;
  resize: none;
  border: 0;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container input:focus {
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container p:before {
  content: attr(type);
  display: block;
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--hero-gradient1);
}
.contact-container button {
  float: right;
  padding: 8px 12px;
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  border: 2px solid var(--hero-gradient1);
  background: 0;
  color: var(--hero-gradient1);
  cursor: pointer;
  transition: all 0.3s;
}
.contact-container button:hover {
  background: var(--hero-gradient2);
  color: #fff;
}
.contact-container .mail-container {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -20px;
  background: var(--hero-gradient1);
  color: #490707;
  width: 320px;
  padding: 16px 4px 16px 0;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 10px 10px 40px -14px #000;
}
.contact-container .mail-container p:before {
  content: none;
}
.contact-container span {
  margin: 0 5px 0 15px;
}
.styled-section{
  --wine-900:#240006;
  --wine-800:#3a000a;
  --wine-700:#5b0011;
  --gold-500:#d8b25a;
  --gold-400:#efcf86;
  --gold-300:#ffe9b8;
  --ivory:#f6f1e6;
  --shadow: rgba(0,0,0,.45);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.25rem, 4vw, 4rem) clamp(1.25rem, 3.5vw, 3rem);
  border-radius: 22px;
  background:
    radial-gradient(1200px 520px at 20% 0%, rgba(255,233,184,.10), transparent 60%),
    radial-gradient(900px 520px at 95% 10%, rgba(216,178,90,.10), transparent 65%),
    radial-gradient(900px 520px at 50% 115%, rgba(0,0,0,.28), transparent 55%),
    linear-gradient(180deg, var(--wine-800), var(--wine-900));
  box-shadow:
    0 18px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.07),
    inset 0 0 0 1px rgba(255,233,184,.08);
}
.styled-section::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 16px;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(255,233,184,.0), rgba(255,233,184,.28), rgba(255,233,184,.0)) top/100% 1px no-repeat,
    linear-gradient(90deg, rgba(255,233,184,.0), rgba(216,178,90,.22), rgba(255,233,184,.0)) bottom/100% 1px no-repeat,
    linear-gradient(0deg, rgba(255,233,184,.0), rgba(216,178,90,.16), rgba(255,233,184,.0)) left/1px 100% no-repeat,
    linear-gradient(0deg, rgba(255,233,184,.0), rgba(216,178,90,.16), rgba(255,233,184,.0)) right/1px 100% no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(216,178,90,.22),
    0 0 0 1px rgba(0,0,0,.25);
}
.styled-section::after{
  content:"";
  position:absolute;
  inset:-30%;
  pointer-events:none;
  opacity:.55;
  mix-blend-mode: screen;
  background:
    radial-gradient(closest-side at 30% 40%, rgba(255,233,184,.11), transparent 70%),
    radial-gradient(closest-side at 70% 55%, rgba(216,178,90,.10), transparent 72%),
    conic-gradient(from 180deg at 50% 50%,
      rgba(255,233,184,.00),
      rgba(216,178,90,.18),
      rgba(255,233,184,.00),
      rgba(216,178,90,.14),
      rgba(255,233,184,.00)
    );
  filter: blur(10px);
  transform: translate3d(0,0,0);
  animation: gildedShimmer 10s ease-in-out infinite;
}
.styled-section .curtain-fx{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.28;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.0) 0px,
      rgba(0,0,0,.0) 18px,
      rgba(0,0,0,.18) 26px,
      rgba(0,0,0,.0) 36px
    );
  mix-blend-mode: multiply;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 45%, transparent 80%);
  animation: curtainDrift 14s ease-in-out infinite;
}
.styled-section .gold-dust{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(2px 2px at 18% 30%, rgba(255,233,184,.9), transparent 60%),
    radial-gradient(1.5px 1.5px at 35% 65%, rgba(216,178,90,.95), transparent 60%),
    radial-gradient(1.7px 1.7px at 55% 28%, rgba(255,233,184,.85), transparent 60%),
    radial-gradient(1.4px 1.4px at 72% 58%, rgba(216,178,90,.9), transparent 60%),
    radial-gradient(1.8px 1.8px at 86% 34%, rgba(255,233,184,.8), transparent 60%),
    radial-gradient(1.6px 1.6px at 42% 44%, rgba(216,178,90,.75), transparent 60%),
    radial-gradient(1.2px 1.2px at 63% 76%, rgba(255,233,184,.75), transparent 60%),
    radial-gradient(1.3px 1.3px at 27% 82%, rgba(216,178,90,.7), transparent 60%);
  filter: drop-shadow(0 0 8px rgba(216,178,90,.15));
  animation: dustFloat 9s linear infinite;
}
.styled-section :is(h1,h2,h3){
  color: var(--gold-300);
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
  letter-spacing: .02em;
}
.styled-section p,
.styled-section li{
  color: rgba(246,241,230,.92);
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
  line-height: 1.75;
}
.styled-section a{
  color: var(--gold-400);
  text-decoration: none;
  border-bottom: 1px solid rgba(216,178,90,.35);
  transition: transform .2s ease, color .2s ease, border-color .2s ease;
}
.styled-section a:hover{
  color: var(--gold-300);
  border-color: rgba(255,233,184,.55);
}
.styled-section .ornate-card{
  position: relative;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  border-radius: 16px;
  background:
    radial-gradient(800px 240px at 20% 0%, rgba(255,233,184,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:
    0 14px 34px rgba(0,0,0,.38),
    inset 0 0 0 1px rgba(255,233,184,.10);
  backdrop-filter: blur(6px);
}
.styled-section .ornate-card::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius: 12px;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(216,178,90,.18);
  opacity:.9;
}
.styled-section .gold-divider{
  height: 1px;
  border: 0;
  margin: 1.25rem 0;
  background: linear-gradient(90deg,
    rgba(255,233,184,0),
    rgba(216,178,90,.65),
    rgba(255,233,184,0)
  );
  filter: drop-shadow(0 2px 10px rgba(216,178,90,.12));
}
@keyframes gildedShimmer{
  0%   { transform: translate(-2%, -1%) rotate(0deg);    opacity:.45; }
  50%  { transform: translate( 2%,  1%) rotate(8deg);    opacity:.65; }
  100% { transform: translate(-2%, -1%) rotate(0deg);    opacity:.45; }
}
@keyframes curtainDrift{
  0%   { transform: translateX(-2%); filter: blur(0px); }
  50%  { transform: translateX( 2%); filter: blur(0.4px); }
  100% { transform: translateX(-2%); filter: blur(0px); }
}
@keyframes dustFloat{
  0%   { transform: translateY(6px) translateX(-4px); opacity:.35; }
  30%  { transform: translateY(-10px) translateX(6px); opacity:.65; }
  60%  { transform: translateY(-22px) translateX(-2px); opacity:.55; }
  100% { transform: translateY(6px) translateX(-4px); opacity:.35; }
}
@media (prefers-reduced-motion: reduce){
  .styled-section::after,
  .styled-section .curtain-fx,
  .styled-section .gold-dust{
    animation: none !important;
  }
}
.ethics-section{
  --wine-950:#1d0005;
  --wine-900:#260006;
  --wine-800:#3b000a;
  --wine-700:#5b0011;
  --gold-500:#d8b25a;
  --gold-400:#efcf86;
  --gold-300:#ffe9b8;
  --ivory:#f6f1e6;
  --shadow: rgba(0,0,0,.45);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.ethics-section .container{
  position: relative;
  z-index: 2;
}
.ethics-section::before{
  content:"";
  position:absolute;
  inset: clamp(14px, 2vw, 22px);
  border-radius: 26px;
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(255,233,184,.12), transparent 62%),
    radial-gradient(900px 520px at 95% 15%, rgba(216,178,90,.10), transparent 65%),
    linear-gradient(180deg, rgba(59,0,10,.60), rgba(29,0,5,.66));
  box-shadow:
    0 20px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.07),
    inset 0 0 0 1px rgba(255,233,184,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}
.ethics-section::after{
  content:"";
  position:absolute;
  inset: calc(clamp(14px, 2vw, 22px) + 10px);
  border-radius: 20px;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(255,233,184,0), rgba(216,178,90,.35), rgba(255,233,184,0)) top/100% 1px no-repeat,
    linear-gradient(90deg, rgba(255,233,184,0), rgba(216,178,90,.22), rgba(255,233,184,0)) bottom/100% 1px no-repeat,
    linear-gradient(0deg, rgba(255,233,184,0), rgba(216,178,90,.18), rgba(255,233,184,0)) left/1px 100% no-repeat,
    linear-gradient(0deg, rgba(255,233,184,0), rgba(216,178,90,.18), rgba(255,233,184,0)) right/1px 100% no-repeat;
  box-shadow: inset 0 0 0 1px rgba(216,178,90,.20);
  opacity:.95;
  z-index: 2;
}
.ethics-section .section-head h2{
  color: var(--gold-300);
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
  letter-spacing: .02em;
  margin-bottom: .9rem;
}
.ethics-section .section-head p{
  color: rgba(246,241,230,.92);
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
  line-height: 1.75;
  margin-bottom: .85rem;
}
.ethics-section .box-one{
  position: relative;
  border-radius: 18px;
  padding: 1.35rem 1.35rem 1.25rem;
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(255,233,184,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 18px 46px rgba(0,0,0,.40),
    inset 0 0 0 1px rgba(255,233,184,.10);
  transform: translate3d(0,0,0);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
}
.ethics-section .box-one::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(closest-side at 35% 40%, rgba(255,233,184,.11), transparent 72%),
    conic-gradient(from 180deg at 50% 50%,
      rgba(255,233,184,.00),
      rgba(216,178,90,.18),
      rgba(255,233,184,.00),
      rgba(216,178,90,.12),
      rgba(255,233,184,.00)
    );
  filter: blur(12px);
  opacity:.55;
  mix-blend-mode: screen;
  animation: boxSheen 9.5s ease-in-out infinite;
  pointer-events:none;
}
.ethics-section .box-one::after{
  content:"";
  position:absolute;
  inset:10px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(216,178,90,.18);
  pointer-events:none;
  opacity:.95;
}
.ethics-section .box-one:hover{
  transform: translateY(-4px);
  box-shadow:
    0 22px 60px rgba(0,0,0,.48),
    inset 0 0 0 1px rgba(255,233,184,.14);
}
.ethics-section .box-one h3{
  color: var(--gold-300);
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
  margin-top: .35rem;
  margin-bottom: .75rem;
  letter-spacing: .02em;
}
.ethics-section .box-one p{
  color: rgba(246,241,230,.92);
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
  line-height: 1.75;
  margin-bottom: .85rem;
}
.ethics-section .box-one p:last-child{ margin-bottom: 0; }
.ethics-section .box-icon{
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: .35rem;
  background:
    radial-gradient(18px 18px at 35% 30%, rgba(255,233,184,.70), rgba(255,233,184,.0) 70%),
    linear-gradient(180deg, rgba(216,178,90,.26), rgba(216,178,90,.10));
  box-shadow:
    0 10px 26px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,233,184,.22);
  position: relative;
}
.ethics-section .box-icon i{
  font-size: 1.35rem;
  line-height: 1;
  color: var(--gold-300);
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
}
.ethics-section .box-icon::after{
  content:"";
  position:absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,233,184,.75);
  filter: blur(0.2px);
  box-shadow: 0 0 16px rgba(255,233,184,.25);
  animation: sparkle 2.8s ease-in-out infinite;
}
.ethics-section .curtain-fx{
  position:absolute;
  inset: 0;
  z-index: 0;
  pointer-events:none;
  opacity: .22;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0) 0px,
      rgba(0,0,0,0) 18px,
      rgba(0,0,0,.20) 28px,
      rgba(0,0,0,0) 40px
    );
  mix-blend-mode: multiply;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 45%, transparent 78%);
  animation: curtainDrift 14s ease-in-out infinite;
}
.ethics-section .gold-dust{
  position:absolute;
  inset: 0;
  z-index: 0;
  pointer-events:none;
  opacity: .55;
  background:
    radial-gradient(2px 2px at 18% 30%, rgba(255,233,184,.9), transparent 60%),
    radial-gradient(1.5px 1.5px at 35% 65%, rgba(216,178,90,.95), transparent 60%),
    radial-gradient(1.7px 1.7px at 55% 28%, rgba(255,233,184,.85), transparent 60%),
    radial-gradient(1.4px 1.4px at 72% 58%, rgba(216,178,90,.9), transparent 60%),
    radial-gradient(1.8px 1.8px at 86% 34%, rgba(255,233,184,.8), transparent 60%),
    radial-gradient(1.6px 1.6px at 42% 44%, rgba(216,178,90,.75), transparent 60%),
    radial-gradient(1.2px 1.2px at 63% 76%, rgba(255,233,184,.75), transparent 60%),
    radial-gradient(1.3px 1.3px at 27% 82%, rgba(216,178,90,.7), transparent 60%);
  filter: drop-shadow(0 0 10px rgba(216,178,90,.12));
  animation: dustFloat 9s linear infinite;
}
.ethics-section .ornament-sheen{
  position:absolute;
  inset:-30%;
  z-index: 0;
  pointer-events:none;
  opacity:.40;
  mix-blend-mode: screen;
  background:
    radial-gradient(closest-side at 30% 40%, rgba(255,233,184,.10), transparent 70%),
    radial-gradient(closest-side at 70% 55%, rgba(216,178,90,.10), transparent 72%),
    conic-gradient(from 180deg at 50% 50%,
      rgba(255,233,184,0),
      rgba(216,178,90,.16),
      rgba(255,233,184,0),
      rgba(216,178,90,.12),
      rgba(255,233,184,0)
    );
  filter: blur(12px);
  animation: gildedShimmer 10s ease-in-out infinite;
}
@keyframes gildedShimmer{
  0%   { transform: translate(-2%, -1%) rotate(0deg); opacity:.32; }
  50%  { transform: translate( 2%,  1%) rotate(8deg); opacity:.50; }
  100% { transform: translate(-2%, -1%) rotate(0deg); opacity:.32; }
}
@keyframes curtainDrift{
  0%   { transform: translateX(-2%); filter: blur(0px); }
  50%  { transform: translateX( 2%); filter: blur(0.4px); }
  100% { transform: translateX(-2%); filter: blur(0px); }
}
@keyframes dustFloat{
  0%   { transform: translateY(10px) translateX(-6px); opacity:.30; }
  35%  { transform: translateY(-10px) translateX(10px); opacity:.62; }
  70%  { transform: translateY(-22px) translateX(-4px); opacity:.52; }
  100% { transform: translateY(10px) translateX(-6px); opacity:.30; }
}
@keyframes boxSheen{
  0%   { transform: translate(-2%, -1%) rotate(0deg); opacity:.35; }
  50%  { transform: translate( 2%,  1%) rotate(10deg); opacity:.60; }
  100% { transform: translate(-2%, -1%) rotate(0deg); opacity:.35; }
}
@keyframes sparkle{
  0%,100% { transform: translateY(0); opacity:.55; }
  50%     { transform: translateY(-3px); opacity:.95; }
}
@media (max-width: 991.98px){
  .ethics-section .section-head{
    text-align: left !important;
  }
  .ethics-section::before{ inset: 12px; }
  .ethics-section::after{ inset: 22px; }
}
@media (prefers-reduced-motion: reduce){
  .ethics-section .curtain-fx,
  .ethics-section .gold-dust,
  .ethics-section .ornament-sheen,
  .ethics-section .box-one::before,
  .ethics-section .box-icon::after{
    animation: none !important;
  }
}
.section-wallets {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),  url("/images/theathre-bg.webp");
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 50px 20px;
    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: #ffffff!important; 
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    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;
}
.section-wallets h3 {
    color: #ffffff!important; 
    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; 
}
.sidebar-linkinking{
  width: 100%;
  max-width: 360px;
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(50 14 14 / 85%), rgb(48 8 8));
  border: 1px solid rgba(210,180,123,0.45);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sidebar-linkinking::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(210,180,123,0.35), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.14), transparent 55%),
    radial-gradient(circle at 40% 80%, rgba(210,180,123,0.22), transparent 60%);
  filter: blur(10px);
  opacity: 0.9;
  animation: sidebarGlow 10s ease-in-out infinite;
  z-index: 0;
}
.sidebar-linkinking::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(115deg,
      transparent 0%,
      rgba(255,255,255,0.14) 35%,
      transparent 60%);
  transform: translateX(-60%);
  animation: sidebarShine 6.5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes sidebarGlow{
  0%   { transform: translate(-2%, -1%) scale(1.02); opacity: .85; }
  50%  { transform: translate( 2%,  1%) scale(1.06); opacity: 1; }
  100% { transform: translate(-2%, -1%) scale(1.02); opacity: .85; }
}
@keyframes sidebarShine{
  0%, 35% { transform: translateX(-80%); opacity: 0; }
  55%     { transform: translateX(0%);   opacity: 1; }
  75%     { transform: translateX(80%);  opacity: 0; }
  100%    { transform: translateX(80%);  opacity: 0; }
}
.sidebar-linkinking h3{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 10px 24px rgba(0,0,0,0.55);
  position: relative;
  z-index: 1;
  padding-left: 34px; 
}
.sidebar-linkinking h3::before{
  content: "🎭";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 22px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.5));
  animation: maskWiggle 2.8s ease-in-out infinite;
}
@keyframes maskWiggle{
  0%,100% { transform: rotate(-6deg) translateY(0); }
  50%     { transform: rotate( 6deg) translateY(-1px); }
}
.sidebar-linkinking h3::after{
  content:"";
  position:absolute;
  left: 34px;
  bottom:-8px;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(210,180,123,0.95), rgba(210,180,123,0.15));
  opacity: 0.95;
}
.page-list{
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.page-list li{
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.12));
  border: 1px solid rgba(210,180,123,0.26);
  box-shadow:
    0 10px 18px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.10);
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.page-list li:hover{
  transform: translateY(-3px);
  border-color: rgba(210,180,123,0.55);
  box-shadow:
    0 16px 28px rgba(0,0,0,0.38),
    0 0 0 2px rgba(210,180,123,0.18);
}
.page-list a{
  display: block;
  padding: 12px 14px 12px 44px; 
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.2px;
  text-shadow: 0 8px 18px rgba(0,0,0,0.45);
}
.page-list a::before{
  content: "🎭";
  position: absolute;
  left: 14px;
  top: 10px;
  font-size: 18px;
  opacity: 0.95;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.55));
  transition: transform .22s ease, opacity .22s ease;
}
.page-list a::after{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(210,180,123,0.18) 40%,
    transparent 70%);
  transform: translateX(-70%);
  opacity: 0;
  transition: opacity .22s ease;
}
.page-list li:hover a{
  color: #ffe7b8;
}
.page-list li:hover a::before{
  transform: rotate(-10deg) scale(1.08);
  opacity: 1;
}
.page-list li:hover a::after{
  opacity: 1;
  animation: linkSweep .9s ease forwards;
}
@keyframes linkSweep{
  from { transform: translateX(-70%); }
  to   { transform: translateX(70%); }
}
.page-list a.active{
  color: #2b0a0a;
  text-shadow: none;
  background: linear-gradient(180deg, rgba(210,180,123,0.95), rgba(210,180,123,0.65));
  border-radius: 14px;
}
.page-list a.active::before{
  opacity: 1;
}
  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  