/* Custom: 1.css */
@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url(":r:icomoon.woff2") format("woff2");
}
header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: var(--section-gap);
}

body {
 font-family: var(--font-family-main) !important;
 font-weight: var(--font-weight-body) !important;
 font-size: var(--font-size-base) !important;
  background: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.content-container {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-container {
    padding-left: var(--page-gap-reduced);
    padding-right: var(--page-gap-reduced);
  }
    section > div > div,
  section > div > div > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px var(--page-gap-reduced);
  }



  ul, ol {
    padding-left: 16px;
  }
}

.breadcrumbs-section {
  width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
}

.breadcrumbs-list .breadcrumbs-list-item {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

.breadcrumbs-list .breadcrumbs-list-item:last-child {
  color: var(--primary);
}

.breadcrumbs-list .breadcrumbs-list-item a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list .breadcrumbs-list-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-list .breadcrumbs-list-item a::after {
  content: "";
  margin: 0 10px 0 10px;
  border: solid rgba(0, 0, 0, 0.25);
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  padding: 5px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--section-gap);
  margin: var(--page-gap) auto;
  max-width: 1200px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.sidebar-column {
  position: relative;
}
@media (max-width: 768px) {
 .layout-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-row: 1; 
  }

  .main-column {
    grid-row: 2;
  }
}

/* FAQ блок */
details {
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  transition: var(--transition);
  font-family: var(--font-family-main);
}

details[open] {
  background: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  color: var(--light);
  list-style: none;
  outline: none;
  transition: var(--transition);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  background: var(--primary-hover);
}

details[open] summary {
  background: var(--accent-hover);
}

details div {
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  color: var(--light);
  background: var(--accent-transparent);
  line-height: 1.6;
}

/* Color scheme: color3 */
:root {
    --primary: #d4af37;
    --primary-hover: #eec14f;
    --accent: #6e5849;
    --accent-hover: #886b5d;
    --accent-secondary: #a27e71;
    --accent-transparent: rgba(110, 88, 73, 0.3);
    --background: #fff8e1;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
html {

  box-sizing: border-box;

}

*, *:before, *:after {

  box-sizing: inherit;

}

body {

  margin: 0;

  padding: 0;

  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  background: var(--background);

  overflow-x: hidden;

  color: var(--dark);

}









.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  padding: 16px var(--page-gap);

  max-width: 1200px;

  margin: 0 auto;

}





.logo-link {

  z-index: 12;

  display: inline-flex;

  align-items: center;

}





.main-nav {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: #2a2a2a;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  padding-top: 80px;

  transform: translateY(-100%);

  transition: transform 0.4s ease;

  z-index: 1000;

  overflow-y: auto;

}



.main-nav.open {

  transform: translateY(0);

}



.menu-list {

  list-style: none;

  padding: 0 20px;

  margin: 0;

  width: 100%;

}



.menu-list li {

  position: relative;

}



.menu-list li a,

.dropbtn {

  display: block;

  padding: 14px 16px;

  color: #fff;

  font-weight: 500;

  text-decoration: none;

  text-transform: uppercase;

  transition: background 0.3s, color 0.3s;

  cursor: pointer;

}



.menu-list li a:hover,

.dropbtn:hover {

  background:  var(--accent, #8f66ff);;

  color: #fff;

}





.dropdown-content {

  display: none;

  flex-direction: column;

  background: #3b3b3b;

  margin-top: 0;

}



.dropdown.open > .dropdown-content {

  display: flex;

}



.dropdown-content a {

  padding-left: 30px;

  font-size: 1rem;

  color: #fff;

}



.dropdown-content a:hover {

  background: #78ae1b;

}





.back-btn {

  display: none;

  width: 100%;

  padding: 12px 20px;

}



.back-btn a {

  color: #fff;

  font-weight: 600;

  display: block;

}



.back-btn a:hover {

  color: #78ae1b;

}





.menu-toggle {

  background: none;

  border: none;

  cursor: pointer;

  z-index: 1100;

}



.burger-lines,

.close-icon {

  width: 24px;

  height: 24px;

  stroke: #fff;

}



.hidden {

  display: none;

}





.lang-switcher {

  position: relative;

  display: inline-block;

  z-index: 1100;

}



.lang-switcher__button {

  background: none;

  border: none;

  cursor: pointer;

  font-weight: 600;

  font-size: 14px;

  padding: 8px 12px;

  border-radius: 6px;

  display: flex;

  align-items: center;

  gap: 6px;

  color: #333;

}



.lang-switcher__list {

  position: absolute;

  top: 100%;

  right: 0;

  display: none;

  flex-direction: column;

  background: #fff;

  border-radius: 6px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  padding: 8px 0;

  min-width: 160px;

  max-height: 300px;

  overflow-y: auto;

  column-count: 2;

  column-gap: 10px;

}



.lang-switcher.open .lang-switcher__list {

  display: flex;

}



.lang-switcher__list li {

  list-style: none;

}



.lang-switcher__list a {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 8px 14px;

  text-decoration: none;

  color: #333;

  transition: background 0.3s;

}



.lang-switcher__list a:hover {

  background: #f0f0f0;

}



.flag {

  width: 20px;

  height: 14px;

  object-fit: cover;

  border-radius: 2px;

}





@media(min-width:1024px){

  .menu-toggle { display: none; }



  .main-nav {

    position: static;

    transform: none;

    flex-direction: row;

    width: auto;

    height: auto;

    background: none;

    padding: 0;

    gap: 30px;

    align-items: center;

    overflow: visible;

  }



  .menu-list {

    flex-direction: row;

    gap: 25px;

    width: auto;

  }



  .menu-list li { display: inline-flex; }



  .menu-list li a,

  .dropbtn {

    padding: 12px 16px;

    color: #333;

  }



  .dropdown-content {

    display: none;

    flex-direction: column;

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 180px;

    background: #fff;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

    border-radius: 6px;

    z-index: 100;

  }



  .dropdown:hover .dropdown-content { display: flex; }



  .dropdown-content a { color: #333; }



  .lang-switcher__button { color:  var(--accent, #8f66ff); }



  

  .lang-switcher__close {

    display: none !important;

  }



  

  .lang-switcher__list {

    position: absolute;

    top: 100%;

    right: 0;

    width: auto;

    max-height: 300px;

    background: #fff;

    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    column-count: 2;

    overflow-y: auto;

    z-index: 100;

  }

}





@media(max-width:1023px){

  .header-inner {

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    flex-wrap: nowrap;

  }



  .main-nav {

    z-index: 1000;

    padding-top: 80px;

  }



  .lang-switcher {

    position: relative;

    z-index: 2000;

    display: inline-block;

  }



  .lang-switcher__button {

    color:  var(--accent, #8f66ff);

    z-index: 2200;

  }



  

 .lang-switcher__list {

    position: fixed;

    top: -20px; 

    left: 0;

    width: 100%;

    height: 100vh;

    max-height: none; 

    background: rgba(42,42,42,0.95);

    display: none;

    flex-direction: column;

    padding-top: 80px;

    column-count: 2;

    column-gap: 10px;

    overflow-y: auto;

    z-index: 2100;

  }



  .lang-switcher.open .lang-switcher__list {

    display: flex;

  }



  .lang-switcher__list a {

    color: #fff;

    padding: 16px 20px;

    width: 100%;

  }



  .lang-switcher__list a:hover {

    background: #78ae1b;

  }



  

  .lang-switcher__close {

    position: fixed;

    top: 20px;

    right: 20px;

    font-size: 2rem;

    color: #fff;

    cursor: pointer;

    display: none;

    z-index: 2200;

  }



  .lang-switcher.open .lang-switcher__close {

    display: block;

  }

}







@media (max-width: 480px) {

  .hero-title {font-size: 1.45rem;}

  .btn-signup, .hero-cta {font-size: 1rem;}

  .menu-toggle {margin-right: 6px; width: 48px;}

}







.main-nav.open {display: flex;}







.hero-minimal {

  min-height: 100vh;

  width: 100vw;

  padding: 0;

  margin: 0;

  display: flex;

}

.hero-image-bg {

  position: relative;

  width: 100vw;

  height: 100vh;

  min-height: 500px;

  display: flex;

  align-items: stretch;

  justify-content: center;

  overflow: hidden;

}

.hero-image-bg img {

  width: 100vw;

  height: 100vh;

  min-height: 500px;

  object-fit: cover;

  display: block;

  pointer-events: none;

  user-select: none;

  position: absolute;

  top: 0; left: 0;

}





.hero-overlay {

  position: absolute;

  z-index: 1;

  top: 0; left: 0; right: 0; bottom: 0;

  background:

    linear-gradient(180deg, rgba(20,20,40,0.65) 0%, rgba(20,10,50,0.45) 70%, rgba(30,20,50,0.65) 100%);

  backdrop-filter: blur(0.5px) saturate(1.3);

  pointer-events: none;

}





.hero-content {

  z-index: 2;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%,-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  width: min(95vw, 540px);

  padding: calc(var(--section-gap) * 1.2) 2vw;

  background: rgba(0,0,0,0.06);

  border-radius: var(--radius);

}

.hero-content h1 {

  font-size: clamp(2.2rem, 5vw, 3.4rem);

  font-weight: 700;

  letter-spacing: -0.01em;

  line-height: 1.12;

  color: var(--light);

  text-shadow: 0 4px 24px rgba(24, 20, 48, 0.28);

  margin-bottom: 36px;

  margin-top: 0;

  transition: color var(--transition);

}

.hero-cta {

  display: inline-block;

  padding: 15px 42px;

  font-size: 1.12rem;

  font-weight: 600;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary), var(--accent) 95%);

  border: none;

  border-radius: var(--radius);

  box-shadow: 0 4px 22px 0 rgba(0,0,0,0.13);

  text-decoration: none;

  cursor: pointer;

  transition:

    background var(--transition),

    transform 0.19s cubic-bezier(.45,.05,.55,.95),

    box-shadow var(--transition),

    filter 0.24s;

  will-change: transform, box-shadow;

  min-width: 180px;

  box-sizing: border-box;

}

.hero-cta:hover, .hero-cta:focus-visible {

  background: linear-gradient(90deg, var(--primary-hover) 62%, var(--accent-hover) 100%);

  filter: brightness(1.11) drop-shadow(0 4px 20px var(--accent-transparent));

  transform: scale(1.04) translateY(-3px);

  box-shadow: 0 14px 42px -8px var(--shadow), 0 6px 24px 0 rgba(0,0,0,0.12);

}





@media (max-width: 1024px) {

  .header-inner { max-width: 96vw; padding: 14px var(--page-gap-reduced); }

  .hero-content { padding: calc(var(--section-gap) * 0.7) 4vw; }

  .hero-minimal, .hero-image-bg {

    min-height: 85vh;

    height: 85vh;

  }

}

@media (max-width: 768px) {

  .header-inner {

    padding: 12px var(--page-gap-reduced);

  }

  .site-header {

    min-height: 48px;

    background: var(--header);

  }

  .hero-minimal, .hero-image-bg {

    min-height: 69vh;

    height: 69vh;

  }

  .hero-content h1 {

    font-size: clamp(1.55rem, 5.7vw, 2.25rem);

    margin-bottom: 26px;

  }

  .hero-cta {

    padding: 12px 22px;

    font-size: 1rem;

    min-width: 130px;

  }

}

@media (max-width: 480px) {

  .header-inner { padding: 7px 3vw; }

  .hero-content {

    padding: 14vw 3vw;

    width: 99vw;

    border-radius: 0;

  }

  .hero-image-bg,

  .hero-minimal {

    min-height: 34vh;

    height: 34vh;

  }

  .hero-content h1 {

    font-size: 1.12rem;

    margin-bottom: 20px;

  }

  .hero-cta {

    font-size: 0.98rem;

    padding: 11px 16px;

    min-width: unset;

    width: max-content;

  }

}

/* LINKS */
.links-wrapper.links-block-popular21 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}



.links-block-popular21-title {

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 2rem;

  color: var(--dark);

  letter-spacing: -0.01em;

}



.links-block-popular21-list {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-wrap: wrap;

  gap: 20px 18px;

  justify-content: flex-start;

  

  max-width: 100%;

}





.links-block-popular21-list li {

  margin: 0;

  padding: 0;

}



.links-block-popular21-list a {

  display: inline-block;

  padding: 10px 26px;

  border-radius: var(--radius);

  background: var(--primary);

  color: var(--light);

  font-size: 1.05rem;

  font-weight: 500;

  text-decoration: none;

  box-shadow: 0 2px 18px 0 var(--shadow,rgba(0,0,0,0.09));

  transition: 

    background 0.22s var(--transition,cubic-bezier(0.4,0,0.2,1)), 

    box-shadow 0.22s var(--transition),

    transform 0.15s var(--transition);

  min-width: 110px;

  max-width: max-content;

  white-space: nowrap;

  vertical-align: middle;

  

  

}



.links-block-popular21-list a:hover,

.links-block-popular21-list a:focus {

  background: var(--accent);

  color: var(--light);

  box-shadow: 0 6px 24px 0 var(--shadow,rgba(0,0,0,0.16));

  transform: translateY(-3px) scale(1.04);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .links-wrapper.links-block-popular21 {

    padding: 32px 12px;

  }

  .links-block-popular21-title {

    font-size: 1.4rem;

    margin-bottom: 1.1rem;

  }

}



@media (max-width: 768px) {

  .links-block-popular21-list {

    flex-wrap: wrap;

    gap: 16px 12px;

    justify-content: flex-start;

  }

  .links-block-popular21-list a {

    display: block;

    width: 100%;

    min-width: unset;

    max-width: 100%;

    padding: 12px 7px;

    text-align: left;

    font-size: 1rem;

  }

}

/* FOOTER */
.footer-block-minimal374 {
  max-width: 100%;
  overflow-x: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer-block-minimal374 .footer-copyright {
  color: var(--dark-muted);
  margin-top: var(--page-gap-reduced);
  font-size: 1rem;
}

@media (max-width: 600px) {
  .footer-block-minimal374 img {
    width: 90px;
    height: 30px;
  }
  .footer-block-minimal374 .footer-copyright {
    font-size: 0.95rem;
    margin-top: var(--page-gap-reduced);
  }
  .footer-block-minimal374 {
    padding: calc(var(--section-gap) * 0.7);
  }
}

/* BODY */
.body-splitWideLeft {

  background: var(--section-bg, var(--background));

  box-shadow: var(--shadow);

  padding: var(--section-gap);

  overflow-x: hidden;

  border-radius: var(--radius);

}



.content-block-wideleft876 {

  box-sizing: border-box;

}



.content-wrapper-elegant843 {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  gap: var(--section-gap);

  max-width: 1200px;

  margin: 0 auto;

  width: 100%;

}



.content-image--flare295 {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

  box-sizing: border-box;

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  box-shadow: 0 4px 24px 0 rgba(40, 20, 70, 0.10);

  backdrop-filter: blur(0.5px);

  background: var(--accent-transparent, rgba(171,161,251,0.13));

}



.content-image--flare295 img {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  border-radius: calc(var(--radius) * 2);

  object-fit: cover;

}



.content-grid-wideleft877 {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: var(--page-gap);

  min-width: 0;

  box-sizing: border-box;

}





.text-content--spark209 {

  color: var(--dark-default, #24242a);

  font-size: 1.09rem;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  line-height: 1.6;

  letter-spacing: 0.01em;

  max-width: 40em;

  font-weight: 400;

  margin-bottom: 12px;

}

.text-content--spark209 h2, 

.text-content--spark209 h3 {

  font-weight: 700;

  margin: 0 0 0.5em 0;

  letter-spacing: -0.01em;

  line-height: 1.15;

  color: var(--accent, #0a005d);

}

.text-content--spark209 h2 { font-size: 2rem; }

.text-content--spark209 h3 { font-size: 1.25rem; }



.text-content--spark209 p {

  margin: 0 0 1em 0;

}



.text-content--spark209 ul, 

.text-content--spark209 ol {

  padding-left: 1.4em;

  margin: 0 0 1em 0;

}

.text-content--spark209 ul li {

  list-style: disc inside;

  margin-bottom: 0.35em;

}

.text-content--spark209 ol li {

  list-style: decimal inside;

  margin-bottom: 0.35em;

}



.text-content--spark209 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark209 a:hover,

.text-content--spark209 a:focus {

  color: var(--primary-hover);

}



.text-content--spark209 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.06);

  margin-bottom: 1em;

  overflow-x: auto;

  display: block;

}

.text-content--spark209 th,

.text-content--spark209 td {

  padding: 0.5em 1em;

  border: 1px solid var(--accent-secondary, #ABA1FB);

  font-size: 0.95em;

  text-align: left;

}

.text-content--spark209 thead th {

  background: var(--accent-transparent, rgba(171,161,251,0.1));

  color: var(--dark);

  font-weight: 600;

}





.cta-button--soft632.button {

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: 0 2px 8px 0 rgba(149, 24, 48, 0.08);

  font-weight: 600;

  font-size: 1.126rem;

  padding: 12px 32px;

  transition: 

    background var(--transition), 

    box-shadow var(--transition),

    transform 0.18s cubic-bezier(.32,1.56,.56,1),

    color var(--transition);

  display: inline-block;

  max-width: max-content;

  border: none;

  outline: none;

  cursor: pointer;

  margin-top: 12px;

  letter-spacing: .02em;

}

.cta-button--soft632.button:hover, 

.cta-button--soft632.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 8px 32px 0 rgba(252,101,131,0.14);

  transform: translateY(-3px) scale(1.025);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    gap: var(--page-gap);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap);

  }

  .content-grid-wideleft877 {

    align-items: flex-start;

  }

}



@media (max-width: 768px) {

  .body-splitWideLeft {

    padding: var(--page-gap);

  }

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    max-width: 100%;

    gap: var(--page-gap-reduced);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap-reduced);

    max-width: 100vw;

    min-width: 0;

  }

  .content-grid-wideleft877,

  .text-content--spark209 {

    max-width: 100vw;

    min-width: 0;

  }

  .cta-button--soft632.button {

    font-size: 1rem;

    padding: 12px 24px;

    margin-top: 8px;

  }

}

/* BODY1 */
.content-block-wide71 {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  background: var(--background);

  padding: 0;

}



.content-wrapper-frame71 {

  max-width: 1080px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 0;

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 0;

}





.image-overlay-wrap71 {

  position: relative;

  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  overflow: hidden;

  display: block;

  border-radius: var(--radius) var(--radius) 0 0;

  isolation: isolate;

}



.image-overlay-wrap71 img,

.image-overlay-wrap71 > *:not(.image-gradient-overlay71) {

  display: block;

  max-width: 100%;

  width: 100%;

  height: 320px;

  object-fit: cover;

  min-height: 220px;

  border-radius: var(--radius) var(--radius) 0 0;

  z-index: 1;

  position: relative;

}





.image-gradient-overlay71 {

  pointer-events: none;

  position: absolute;

  left: 0; top: 0; width: 100%; height: 100%;

  z-index: 2;

  background: linear-gradient(

    to bottom,

    rgba(20,0,50,0.30) 0%,

    rgba(30,0,85,0.47) 55%,

    rgba(255,255,255,0.0) 100%

  );

  mix-blend-mode: multiply;

  backdrop-filter: blur(0.5px);

  border-radius: var(--radius) var(--radius) 0 0;

  transition: var(--transition);

}





.content-gradient-card71 {

  position: relative;

  width: 100%;

  box-sizing: border-box;

  background: var(--light);

  border-radius: 0 0 var(--radius) var(--radius);

  box-shadow: 0 6px 24px 0 rgba(10,0,93,0.10), var(--shadow);

  margin-top: -60px;

  padding: 40px 48px 36px 48px;

  z-index: 10;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 36px;

}



@media (max-width: 1024px) {

  .content-gradient-card71 {

    padding: 36px 24px 28px 24px;

    gap: 26px;

  }

}



@media (max-width: 768px) {

  .content-wrapper-frame71 {

    max-width: 100vw;

    padding: 0;

  }

  .content-gradient-card71 {

    margin-top: -36px;

    padding: 24px 10px 18px 10px;

    gap: 20px;

    border-radius: 0 0 var(--radius) var(--radius);

  }

}



@media (max-width: 520px) {

  .content-gradient-card71 {

    margin-top: -22px;

    padding: 16px 4vw 12px 4vw;

    gap: 14px;

  }

}





.text-content-spark71 {

  color: var(--dark);

  font-size: 1.14rem;

  font-family: inherit;

  width: 100%;

  max-width: 730px;

  margin: 0;

  padding: 0;

}



.text-content-spark71 h2,

.text-content-spark71 h3 {

  color: var(--accent);

  font-weight: 700;

  margin: 0 0 12px 0;

  line-height: 1.18;

  letter-spacing: -0.5px;

}



.text-content-spark71 h2 {font-size: 2rem;}

.text-content-spark71 h3 {font-size: 1.28rem;}



.text-content-spark71 p {

  margin: 0 0 14px 0;

  color: var(--dark-default);

  line-height: 1.62;

}



.text-content-spark71 ul,

.text-content-spark71 ol {

  padding-left: 1.24em;

  margin: 0 0 14px 0;

}



.text-content-spark71 ul li {

  list-style: disc inside;

  margin-bottom: 6px;

  color: var(--dark-muted);

}



.text-content-spark71 ol li {

  list-style: decimal inside;

  margin-bottom: 6px;

  color: var(--dark-muted);

}



.text-content-spark71 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.18s;

  word-break: break-all;

}

.text-content-spark71 a:hover,

.text-content-spark71 a:focus {

  color: var(--primary-hover);

}



.text-content-spark71 table {

  width: 100%;

  border-collapse: collapse;

  margin: 12px 0;

  overflow-x: auto;

  font-size: 0.97rem;

}



.text-content-spark71 th,

.text-content-spark71 td {

  padding: 8px 10px;

  border-bottom: 1px solid var(--accent-secondary);

  text-align: left;

  color: var(--dark-default);

  background: var(--light);

}

.text-content-spark71 th {

  background: var(--accent-transparent);

  color: var(--accent);

}



.text-content-spark71 b, .text-content-spark71 strong { font-weight: 700; }

.text-content-spark71 i, .text-content-spark71 em { font-style: italic; }



.text-content-spark71::-webkit-scrollbar {

  height: 4px;

  background: var(--background);

}

.text-content-spark71::-webkit-scrollbar-thumb {

  background: var(--accent-secondary);

}





.cta-button-soft71 {

  display: inline-block;

  padding: 14px 38px;

  font-size: 1.08rem;

  line-height: 1.14;

  font-weight: 700;

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: 0 2px 16px 0 rgba(10,0,93,0.09), var(--shadow);

  transition: var(--transition), box-shadow 0.13s;

  text-decoration: none;

  margin-top: 8px;

  min-width: 128px;

  text-align: center;

  position: relative;

  user-select: none;

  white-space: nowrap;

  cursor: pointer;

  will-change: transform, box-shadow;

}



.cta-button-soft71:hover,

.cta-button-soft71:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px 0 rgba(10,0,93,0.13), var(--shadow);

  text-decoration: none;

}



.cta-button-soft71:active {

  background: var(--accent);

  box-shadow: 0 1px 2px rgba(10,0,93,0.08);

}





@media (max-width: 768px) {

  .content-block-wide71,

  .content-wrapper-frame71,

  .image-overlay-wrap71,

  .image-gradient-overlay71,

  .content-gradient-card71 {

    max-width: 100vw;

    box-sizing: border-box;

  }

}



body {

  overflow-x: hidden;

}

/* BODY2 */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* BODY3 */
.content-block-heroTop90 {

  width: 100%;

  box-sizing: border-box;

  background: var(--light);

  padding: var(--section-gap);

  display: flex;

  justify-content: center;

  align-items: stretch;

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  overflow-x: hidden;

}

.content-wrapper-glossy990 {

  max-width: 920px;

  width: 100%;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: calc(var(--section-gap) * 0.8);

  align-items: center;

}





.content-image--flare198 {

  width: 100%;

  border-radius: var(--radius) var(--radius) 0 0;

  overflow: hidden;

  box-shadow: 0 2px 16px rgba(10, 0, 93, 0.10);

  backdrop-filter: blur(0.5px);

  margin-bottom: var(--page-gap-reduced);

}

.content-image--flare198 img {

  display: block;

  width: 100%;

  height: auto;

  object-fit: cover;

  border-radius: var(--radius) var(--radius) 0 0;

}





.cta-row-soft520 {

  width: 100%;

  display: flex;

  justify-content: center;

  margin-bottom: var(--page-gap-reduced);

}

.cta-button--soft194 {

  background: var(--primary);

  color: var(--light);

  padding: 14px 32px;

  border-radius: var(--radius);

  font-size: 1.08rem;

  font-weight: 600;

  display: inline-block;

  box-shadow: 0 2px 10px rgba(149, 24, 48, 0.16);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.18s cubic-bezier(0.23,0.82,0.47,0.96);

  cursor: pointer;

  outline: none;

  border: none;

  min-width: max-content;

  letter-spacing: 0.02em;

  position: relative;

}

.cta-button--soft194:hover, .cta-button--soft194:focus {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.02);

  box-shadow: 0 8px 24px rgba(149,24,48,0.17);

}

.cta-button--soft194:active {

  transform: scale(0.98);

}





.text-content--spark761 {

  width: 100%;

  color: var(--dark);

  font-size: 1.1rem;

  line-height: 1.6;

  display: block;

  padding: 0 var(--page-gap);

  box-sizing: border-box;

}





.text-content--spark761 h2,

.text-content--spark761 h3 {

  font-weight: 700;

  color: var(--accent);

  margin-top: 0.65em;

  margin-bottom: 0.2em;

  letter-spacing: 0.01em;

  line-height: 1.2;

}



.text-content--spark761 h2 {

  font-size: 2rem;

}

.text-content--spark761 h3 {

  font-size: 1.35rem;

}





.text-content--spark761 p {

  margin: 0.65em 0 0.85em;

  color: var(--dark-default);

}



.text-content--spark761 ul,

.text-content--spark761 ol {

  padding-left: 1.4em;

  margin: 0.25em 0 1em;

}

.text-content--spark761 ul {

  list-style: disc inside;

}

.text-content--spark761 ol {

  list-style: decimal inside;

}

.text-content--spark761 li {

  margin: 0.3em 0;

  color: var(--dark);

}





.text-content--spark761 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.18s cubic-bezier(0.39,0,0.17,0.99);

  word-break: break-word;

}

.text-content--spark761 a:hover,

.text-content--spark761 a:focus {

  color: var(--accent);

}





.text-content--spark761 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  margin: var(--page-gap-reduced) 0;

  font-size: 1rem;

  background: var(--accent-transparent);

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content--spark761 thead {

  background: var(--accent-secondary);

}

.text-content--spark761 th,

.text-content--spark761 td {

  border: 1px solid var(--accent);

  padding: 0.55em 1em;

  text-align: left;

  color: var(--dark);

}

.text-content--spark761 th {

  font-weight: 600;

  color: var(--dark);

}





.text-content--spark761 td ul,

.text-content--spark761 td ol {

  margin: 0.15em 0;

  padding-left: 1.3em;

}





.text-content--spark761 b, 

.text-content--spark761 strong {

  font-weight: 700;

  color: var(--accent);

}

.text-content--spark761 i, 

.text-content--spark761 em {

  font-style: italic;

}





@media (max-width: 1024px) {

  .content-wrapper-glossy990 {

    max-width: 98vw;

    padding: 0;

  }

  .text-content--spark761 {

    font-size: 1rem;

    padding-left: var(--page-gap-reduced);

    padding-right: var(--page-gap-reduced);

  }

}

@media (max-width: 768px) {

  .content-block-heroTop90 {

    padding: var(--page-gap);

    border-radius: var(--radius);

  }

  .content-wrapper-glossy990 {

    max-width: 100vw;

    padding: 0;

    gap: var(--page-gap);

  }

  .content-image--flare198 {

    margin-bottom: var(--page-gap);

    border-radius: var(--radius);

  }

  .text-content--spark761 {

    padding: 0 var(--page-gap-reduced);

    font-size: 0.98rem;

  }

}

@media (max-width: 480px) {

  .content-block-heroTop90 {

    padding: var(--page-gap-reduced);

    border-radius: var(--radius);

  }

  .content-wrapper-glossy990 {

    gap: var(--page-gap-reduced);

  }

  .cta-row-soft520 {

    margin-bottom: var(--page-gap-reduced);

  }

  .cta-button--soft194 {

    padding: 12px 18px;

    font-size: 1rem;

  }

  .text-content--spark761 {

    padding: 0 4vw;

    font-size: 0.97rem;

  }

  .content-image--flare198 {

    border-radius: var(--radius);

  }

}

/* BODY4 */
.content-block-neon99 {

  box-sizing: border-box;

  width: 100%;

  min-height: 100vh;

  position: relative;

  overflow-x: hidden;

  background: var(--dark);

  display: flex;

  justify-content: center;

  align-items: center;

  padding: var(--section-gap) 0;

}



.content-wrapper-neon99 {

  position: relative;

  width: 100%;

  max-width: 1024px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;

  z-index: 1;

  box-sizing: border-box;

}



.content-image--flare99 {

  position: relative;

  width: 100%;

  max-width: 1024px;

  max-height: 640px;

  min-height: 320px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  border-radius: var(--radius);

  box-shadow: 0 0 40px 2px var(--primary), 0 2px 24px var(--shadow);

  margin-bottom: -16vh;

  z-index: 0;

}



.content-image--flare99 > *:first-child {

  display: block;

  width: 100%;

  height: auto;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius);

}



.image-overlay--neon99 {

  position: absolute;

  inset: 0;

  background: linear-gradient(120deg, rgba(10,0,93,0.50) 0%, rgba(149,24,48, 0.35) 50%, rgba(0,0,0, 0.85) 100%);

  pointer-events: none;

  z-index: 1;

  box-shadow: 0 0 80px 32px var(--accent-transparent) inset;

  backdrop-filter: blur(0.5px);

  border-radius: var(--radius);

}



.content-center-neon99 {

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  margin-top: -20vh;

  padding: 3.5vw 8vw 4vw 8vw;

  min-width: 0;

  max-width: 90%;

  background: rgba(25,7,50,0.75);

  border-radius: calc(var(--radius) * 2);

  box-shadow: 0 0 32px 0 var(--primary-hover), 0 2px 24px var(--shadow);

  backdrop-filter: blur(0.5px);

}



.text-content--spark99 {

  color: var(--light);

  text-align: center;

  font-size: 1.24rem;

  font-weight: 400;

  letter-spacing: 0.01em;

  margin-bottom: 1.9rem;

  line-height: 1.7;

  width: 100%;

  

}

.text-content--spark99 h2,

.text-content--spark99 h3 {

  color: var(--light);

  font-weight: 700;

  margin: 0 0 0.6em;

  letter-spacing: 0.02em;

  text-shadow: 0 0 8px var(--primary), 0 2px 10px var(--accent-transparent);

}

.text-content--spark99 h2 {

  font-size: 2.2rem;

  line-height: 1.2;

}

.text-content--spark99 h3 {

  font-size: 1.4rem;

  line-height: 1.3;

}

.text-content--spark99 p {

  margin: 0 0 1em 0;

  color: var(--light);

  opacity: 0.92;

  font-size: 1.08rem;

}

.text-content--spark99 ul,

.text-content--spark99 ol {

  margin: 1em auto 1.5em 2em;

  padding-left: 1.4em;

  color: var(--light);

  font-size: 1.08rem;

}

.text-content--spark99 li {

  margin-bottom: 0.45em;

  position: relative;

}

.text-content--spark99 ul li::before {

  content: "";

  display: inline-block;

  vertical-align: middle;

  width: 0.55em;

  height: 0.55em;

  margin-right: 0.6em;

  border-radius: 50%;

  background: radial-gradient(circle, var(--accent) 0%, var(--primary) 100%);

  box-shadow: 0 0 8px 2px var(--primary);

}

.text-content--spark99 ol {

  list-style-type: decimal;

}

.text-content--spark99 b, 

.text-content--spark99 strong {

  color: var(--accent);

  font-weight: 600;

  text-shadow: 0 0 6px var(--primary-hover);

}

.text-content--spark99 i,

.text-content--spark99 em {

  color: var(--accent-secondary, var(--accent));

}

.text-content--spark99 a {

  color: var(--accent-secondary, var(--accent));

  transition: color 0.2s;

  text-decoration: underline;

  text-underline-offset: 2px;

  font-weight: 500;

}

.text-content--spark99 a:hover {

  color: var(--primary-hover);

  text-shadow: 0 0 8px var(--accent);

}

.text-content--spark99 table {

  width: 100%;

  overflow-x: auto;

  border-collapse: separate;

  border-spacing: 0;

  background: rgba(0,0,0,0.26);

  border-radius: var(--radius);

  margin: 1.1em 0;

  box-shadow: 0 2px 12px 0 var(--shadow);

}

.text-content--spark99 th,

.text-content--spark99 td {

  padding: 0.6em 1em;

  border: 1px solid var(--accent-transparent);

  color: var(--light);

  text-align: center;

  font-size: 1rem;

}

.text-content--spark99 th {

  font-weight: 700;

  background: var(--accent-transparent);

  color: var(--light);

}

.text-content--spark99 tr:nth-child(even) td {

  background: rgba(171,161,251,0.09);

}





.cta-button--soft99.button {

  display: inline-block;

  font-weight: 700;

  font-size: 1.10rem;

  padding: 14px 38px;

  margin-top: 0.7rem;

  color: var(--light);

  background: radial-gradient(circle at 50% 45%, var(--primary) 0%, var(--accent) 90%);

  border: none;

  border-radius: 32px;

  box-shadow:

    0 2px 24px 0 var(--accent),

    0 0 16px 2px var(--primary-hover),

    0 0 32px 4px var(--accent-transparent);

  cursor: pointer;

  transition: 

    background 0.27s var(--transition),

    box-shadow 0.30s cubic-bezier(.24,0,.12,1),

    transform 0.21s cubic-bezier(.40,.25,.27,1);

  outline: none;

  text-shadow: 0 0 12px var(--primary-hover);

  letter-spacing: 0.07em;

  position: relative;

}



.cta-button--soft99.button:hover,

.cta-button--soft99.button:focus {

  background: radial-gradient(circle at 60% 40%, var(--primary-hover) 10%, var(--accent) 90%);

  box-shadow:

    0 4px 36px 0 var(--primary-hover),

    0 0 28px 6px var(--accent-hover),

    0 0 40px 10px var(--accent-transparent);

  transform: translateY(-3px) scale(1.028);

  filter: brightness(1.07);

  outline: none;

}



.cta-button--soft99.button:active {

  transform: scale(0.98);

  filter: brightness(0.97);

}





@media (max-width: 1024px) {

  .content-block-neon99 {

    min-height: 80vh;

    padding: var(--page-gap);

  }

  .content-image--flare99 {

    max-height: 340px;

    margin-bottom: -70px;

  }

  .content-center-neon99 {

    margin-top: -8vh;

    padding: 6vw 4vw 7vw 4vw;

    max-width: 98%;

  }

}

@media (max-width: 768px) {

  .content-block-neon99 {

    padding: var(--page-gap-reduced);

    min-height: 60vh;

  }

  .content-wrapper-neon99 {

    max-width: 98vw;

    padding: 0;

  }

  .content-image--flare99 {

    max-width: 98vw;

    max-height: 180px;

    min-height: 120px;

    margin-bottom: -28vw;

  }

  .content-center-neon99 {

    margin-top: -13vw;

    padding: 7vw 4vw 7vw 4vw;

    font-size: 0.99rem;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius);

  }

  .text-content--spark99 {

    font-size: 1rem;

  }

  .cta-button--soft99.button {

    font-size: 1rem;

    padding: 12px 26px;

  }

}

@media (max-width: 480px) {

  .content-block-neon99 {

    padding: var(--page-gap-reduced) 0;

  }

  .content-image--flare99 {

    max-width: 100vw;

    max-height: 110px;

    min-height: 60px;

    margin-bottom: -17vw;

  }

  .content-center-neon99 {

    margin-top: -14vw;

    padding: 12vw 4vw 12vw 4vw;

    border-radius: var(--radius);

  }

  .text-content--spark99 {

    font-size: 0.93rem;

    padding: 0;

  }

}

/* dating-blog/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* dating-blog/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}