:root {
  --body-bg-color: #ffffff;
  --body-text-color: #000000;
  --heading-color: #000000;
  --hero-gradient1: #ffffff;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #c4bfbf80;
  --link-color: #ffffff;
  --header-bg-color: #ffffff;
  --font-family: Georgia, serif;
  --nav-link-color: #000000;
  --footer-text-color: #4b142f;
  --header-text-color: #4b142f;
}
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(255, 255, 255, 0.801), rgba(255, 253, 253, 0.466)),
    url("/images/body-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) !important;
}
.content-area a {
  color: rgb(233, 114, 233);
  text-decoration: underline ;
}
.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:.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:.6rem}.footer-links a{text-decoration:none;transition:all .3s ease}.footer-links a:hover{padding-left:6px}.newsletter-form{display:flex;flex-direction:column;gap:.6rem;margin-top:1rem}.newsletter-form input{flex:1;padding:.6rem .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:.6rem 1.1rem;border-radius:8px;border:0;font-weight:600;background:var(--link-color);color:var(--footer-text-color);transition:all .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)} 
 .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 {
  position: relative;
  padding: 115px 0 60px;
  overflow: hidden;
  text-align: center;
}
.hero-section.with-bg {
  background-image: url('/images/ballerine-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section.with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.212),
    rgba(255, 255, 255, 0.233)
  );
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .justify-content-center {
  margin: 0 auto;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.342);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.288);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #5a2d3c;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.hero-section h1::after {
  content: '';
  display: block;
  width: 90px;
  height: 3px;
  margin: 1rem auto 0;
  background: linear-gradient(
    to right,
    #c48a9a,
    #7b3a4a
  );
  border-radius: 10px;
}
.hero-section p {
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 90px 0 40px;
  }
  .hero-section .justify-content-center {
    padding: 2rem;
  }
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}
@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: #4c4444 !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;
  }
}
.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;
  width: 320px;
  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: #3f0933;
  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;
}
.fancy-section{
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0;
  color: #3a2a2d;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(120, 25, 45, 0.10);
  border-bottom: 1px solid rgba(120, 25, 45, 0.10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.fancy-section::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(120, 25, 45, 0.04) 0px,
      rgba(120, 25, 45, 0.04) 2px,
      rgba(255,255,255,0.00) 12px,
      rgba(255,255,255,0.00) 28px
    );
  transform: rotate(-2deg);
  opacity: .9;
  pointer-events:none;
}
.fancy-section::after{
  content:"";
  position:absolute;
  width: 700px;
  height: 700px;
  left: -180px;
  top: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(120, 25, 45, 0.14), rgba(255,255,255,0) 60%);
  filter: blur(2px);
  animation: fancyFloat 10s ease-in-out infinite;
  pointer-events:none;
}
.fancy-section h2{
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #5a1f2c; 
  letter-spacing: .2px;
  margin-bottom: .75rem;
}
.fancy-section p{
  line-height: 1.7;
  max-width: 80ch;
}
.fancy-grid{
  position: relative;
  z-index: 1;
}
.fancy-box{
  position: relative;
  height: 100%;
  padding: 1.6rem 1.6rem 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.40);
  border: 1px solid rgba(120, 25, 45, 0.14);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  animation: fancyIn .7s ease both;
}
.fancy-box:hover{
  transform: translateY(-6px);
  border-color: rgba(120, 25, 45, 0.26);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.65);
}
.fancy-icon{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  margin: -8px auto 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(120, 25, 45, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.55);
  animation: iconPulse 3.6s ease-in-out infinite;
}
.fancy-icon i{
  font-size: 1.35rem;
  color: #5a1f2c;
}
.fancy-box h3{
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #5a1f2c;
  margin-bottom: .9rem;
}
.fancy-box p{
  margin-bottom: .9rem;
}
.fancy-box p:last-child{
  margin-bottom: 0;
}
@keyframes fancyIn{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes fancyFloat{
  0%,100%{ transform: translate(0,0) scale(1); opacity: .95; }
  50%{ transform: translate(40px, 35px) scale(1.05); opacity: .80; }
}
@keyframes iconPulse{
  0%,100%{ transform: translateY(0) scale(1); }
  50%{ transform: translateY(-2px) scale(1.03); }
}
.newsletter{
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(120, 25, 45, 0.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.newsletter-title{
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #5a1f2c;
  margin-bottom: .4rem;
}
.newsletter-text{
  font-size: .95rem;
  line-height: 1.5;
  opacity: .85;
  margin-bottom: 1rem;
}
.newsletter-form .input-group{
  margin-bottom: .9rem;
}
.newsletter-form .input-group-text{
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(120,25,45,0.18);
  color: #5a1f2c;
}
.newsletter-form .form-control{
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(120,25,45,0.18);
  color: #5a1f2c;
}
.newsletter-form .form-control::placeholder{
  color: rgba(90,31,44,.6);
}
.newsletter-form .form-control:disabled{
  opacity: .85;
}
.newsletter-btn{
  width: 100%;
  border-radius: 999px;
  padding: .55rem 1rem;
  background: rgba(90,31,44,0.12);
  border: 1px solid rgba(120,25,45,0.28);
  color: #5a1f2c;
  cursor: not-allowed;
  opacity: .7;
  transition: transform .3s ease, box-shadow .3s ease;
}
.newsletter-btn:hover{
  transform: none;
  box-shadow: none;
}
.sidebar-linking{
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.40);
  border: 1px solid rgba(120,25,45,0.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.sidebar-linking h3{
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #5a1f2c;
  margin-bottom: 1rem;
  position: relative;
}
.sidebar-linking h3::after{
  content:"";
  display:block;
  width: 42px;
  height: 2px;
  margin-top: .35rem;
  background: linear-gradient(
    90deg,
    rgba(120,25,45,.6),
    rgba(120,25,45,0)
  );
}
.page-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-list li{
  margin-bottom: .6rem;
}
.page-list li:last-child{
  margin-bottom: 0;
}
.page-list a{
  display: block;
  padding: .45rem .6rem;
  border-radius: 10px;
  font-size: .95rem;
  color: #5a1f2c;
  text-decoration: none;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(120,25,45,0.12);
  transition:
    background .3s ease,
    transform .25s ease,
    box-shadow .25s ease,
    border-color .3s ease;
}
.page-list a:hover{
  background: rgba(255,255,255,0.55);
  border-color: rgba(120,25,45,0.26);
  transform: translateX(4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}
.page-list a:active{
  transform: translateX(2px);
}
  .section-wallets {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.425), rgba(255, 255, 255, 0.808)), url('/images/ballerine-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: #2e2c2c!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: #3b3939;
    line-height: 1.6;
}
.section-wallets h3 {
    color: #383636!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 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; 
}
.custom-section{
  position: relative;
  padding: clamp(2.2rem, 5vw, 2rem);
  margin: 2rem 0;
  overflow: hidden;
  background: rgba(255,255,255,0.46);
  border: 1px solid rgba(120,25,45,0.14);
  border-left: 3px solid rgba(120,25,45,0.22);
  border-radius: 22px;
  box-shadow:
    0 26px 70px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: sectionFadeUp .8s ease both;
}
.custom-section::before{
  content:"";
  position: absolute;
  inset: -35%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(120,25,45,0.05) 0px,
      rgba(120,25,45,0.05) 2px,
      rgba(255,255,255,0) 14px,
      rgba(255,255,255,0) 32px
    );
  transform: rotate(-2deg);
  opacity: .85;
  pointer-events: none;
}
.custom-section::after{
  content:"";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -220px;
  top: -260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(120,25,45,0.16), rgba(255,255,255,0) 60%),
    radial-gradient(circle at 70% 70%, rgba(120,25,45,0.10), rgba(255,255,255,0) 62%);
  filter: blur(2px);
  opacity: .9;
  pointer-events: none;
  animation: blobFloat 11s ease-in-out infinite;
}
.custom-section .shimmer-line{
  position: absolute;
  left: -30%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.28) 45%,
    rgba(255,255,255,0) 70%
  );
  transform: skewX(-15deg);
  opacity: .55;
  pointer-events: none;
  animation: shimmerSweep 7.5s ease-in-out infinite;
}
.custom-section h2{
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #5a1f2c;
  letter-spacing: .2px;
  margin-bottom: 1rem;
  position: relative;
  animation: titleSlide .8s ease both;
}
.custom-section h2::after{
  content:"";
  display:block;
  width: 64px;
  height: 2px;
  margin-top: .45rem;
  background: linear-gradient(
    90deg,
    rgba(120,25,45,.65),
    rgba(120,25,45,0)
  );
}
.custom-section h3{
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #5a1f2c;
  margin-top: 1.4rem;
  margin-bottom: .6rem;
  position: relative;
  padding-left: .8rem;
}
.custom-section h3::before{
  content:"";
  position: absolute;
  left: 0;
  top: .25em;
  width: 4px;
  height: 1.1em;
  border-radius: 999px;
  background: rgba(120,25,45,0.55);
  box-shadow: 0 0 0 6px rgba(120,25,45,0.08);
  animation: accentPulse 3.6s ease-in-out infinite;
}
.custom-section p{
  line-height: 1.75;
  color: #3a2a2d;
}
.custom-section > .container,
.custom-section > .inner,
.custom-section > div{
  position: relative;
  z-index: 2;
}
@keyframes sectionFadeUp{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes titleSlide{
  from{ opacity: 0; transform: translateX(-10px); }
  to{ opacity: 1; transform: translateX(0); }
}
@keyframes blobFloat{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-40px, 34px) scale(1.05); }
}
@keyframes shimmerSweep{
  0%{ transform: translateX(-40%) skewX(-15deg); opacity: .0; }
  25%{ opacity: .55; }
  50%{ transform: translateX(180%) skewX(-15deg); opacity: .2; }
  100%{ transform: translateX(180%) skewX(-15deg); opacity: 0; }
}
@keyframes accentPulse{
  0%,100%{ transform: scaleY(1); opacity: 1; }
  50%{ transform: scaleY(1.12); opacity: .78; }
}
.styled-section{
  position: relative;
  padding: clamp(2.6rem, 6vw, 3rem);
  margin: 2.6rem 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.55),
      rgba(255,255,255,0.35)
    );
  border-radius: 26px;
  border: 1px solid rgba(120,25,45,0.16);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: sectionBloom .9s ease both;
}
.styled-section::before,
.styled-section::after{
  content:"";
  position:absolute;
  width: 140px;
  height: 140px;
  pointer-events:none;
}
.styled-section::before{
  left: -40px;
  top: -40px;
  border-top: 2px solid rgba(120,25,45,0.35);
  border-left: 2px solid rgba(120,25,45,0.35);
  border-radius: 26px 0 0 0;
  animation: cornerPulse 4.5s ease-in-out infinite;
}
.styled-section::after{
  right: -40px;
  bottom: -40px;
  border-bottom: 2px solid rgba(120,25,45,0.35);
  border-right: 2px solid rgba(120,25,45,0.35);
  border-radius: 0 0 26px 0;
  animation: cornerPulse 4.5s ease-in-out infinite reverse;
}
.styled-section .grain{
  position:absolute;
  inset:-50%;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(120,25,45,0.04) 0px,
      rgba(120,25,45,0.04) 1px,
      rgba(255,255,255,0) 8px,
      rgba(255,255,255,0) 22px
    );
  opacity:.8;
  pointer-events:none;
  animation: grainShift 14s linear infinite;
}
.styled-section h2{
  font-family: Georgia, "Times New Roman", Times, serif;
  color:#5a1f2c;
  margin-bottom:1rem;
  position:relative;
  animation: titleFade .8s ease both;
}
.styled-section h2::after{
  content:"";
  display:block;
  width: 56px;
  height: 2px;
  margin-top: .45rem;
  background: linear-gradient(
    90deg,
    rgba(120,25,45,.7),
    rgba(120,25,45,0)
  );
}
.styled-section h3{
  font-family: Georgia, "Times New Roman", Times, serif;
  color:#5a1f2c;
  margin-top:1.5rem;
  margin-bottom:.6rem;
  padding-left:.9rem;
  position:relative;
}
.styled-section h3::before{
  content:"";
  position:absolute;
  left:0;
  top:.25em;
  width:3px;
  height:1.1em;
  background: rgba(120,25,45,0.65);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(120,25,45,0.10);
  animation: accentBreath 3.8s ease-in-out infinite;
}
.styled-section p{
  line-height:1.75;
  color:#3a2a2d;
}
.styled-section > *{
  position:relative;
  z-index:2;
}
@keyframes sectionBloom{
  from{ opacity:0; transform: translateY(16px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes titleFade{
  from{ opacity:0; transform: translateX(-8px); }
  to{ opacity:1; transform: translateX(0); }
}
@keyframes cornerPulse{
  0%,100%{ opacity:.9; }
  50%{ opacity:.55; }
}
@keyframes grainShift{
  0%{ transform: translate(0,0); }
  50%{ transform: translate(-3%, 2%); }
  100%{ transform: translate(0,0); }
}
@keyframes accentBreath{
  0%,100%{ transform: scaleY(1); opacity:1; }
  50%{ transform: scaleY(1.15); opacity:.75; }
}
  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  