/* 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: color22 */
:root {
    --primary: #ff1493;
    --primary-hover: #ff33a8;
    --accent: #00bfff;
    --accent-hover: #1ac7ff;
    --accent-secondary: #33ceff;
    --accent-transparent: rgba(0, 191, 255, 0.3);
    --background: #fff0f5;
    --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 */
.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;

  }

}







.hero-split {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: var(--section-gap);

  padding: min(6vw, 60px) var(--page-gap);

  align-items: center;

  max-width: 1200px;

  margin: 0 auto;

  position: relative;

  min-width: 0;

  z-index: 1;

}

.hero-img-side {

  position: relative; aspect-ratio: 2/3;

  display: flex; align-items: stretch; min-width: 0;

  box-shadow: 0 5px 44px -12px rgba(0,0,0,.08);

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  justify-content: center;

  width: 100%;

  min-height: 280px;

  max-width: 380px;

}

.hero-img-side img {

  display: block;

  width: 100%; height: 100%;

  object-fit: cover;

  border-radius: inherit;

  filter: blur(0px);

  position: relative; z-index: 1;

}

.img-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, var(--accent-transparent) 0%,rgba(30,30,60,0.25) 65%);

  z-index: 2;

  pointer-events: none;

  backdrop-filter: blur(0.5px);

}



.hero-content {

  display: flex;

  flex-direction: column;

  gap: clamp(16px, 5vw, 38px);

  position: relative;

  z-index: 2;

  min-width: 0;

}

.hero-title {

  margin: 0 0 0.2em 0;

  font-size: clamp(2.1rem, 6vw, 2.75rem);

  font-weight: 750;

  color: var(--accent);

  letter-spacing: -0.008em;

  line-height: 1.1;

  text-shadow: 0 2px 10px rgba(40,20,60,0.045);

  word-break: break-word;

}

.hero-cta {

  display: inline-block;

  background: linear-gradient(97deg,var(--primary),var(--primary-hover) 80%);

  color: var(--light);

  font-size: 1.19rem;

  font-weight: 650;

  letter-spacing: 0.02em;

  padding: 0.82em 2.3em;

  border-radius: calc(var(--radius)*1.6);

  box-shadow: 0 4px 18px 0 rgba(30,20,50,0.1);

  margin-top: 6px;

  text-decoration: none;

  border: none;

  transition: var(--transition), filter .16s;

  position: relative;

  cursor: pointer;

  min-width: max-content;

  will-change: transform;

}

.hero-cta:hover,

.hero-cta:focus {

  filter: brightness(1.07) drop-shadow(0 8px 25px rgba(60,30,80,0.13));

  transform: translateY(-1.5px) scale(1.045);

  background: linear-gradient(97deg,var(--primary),var(--primary-hover) 95%);

  box-shadow: 0 10px 44px -12px rgba(40,10,90,0.17);

  color: var(--light);

}





@media (max-width: 1023px) {

  .hero-split {

    grid-template-columns: 1fr 1.2fr;

    gap: var(--page-gap);

    padding: min(6vw, 38px) var(--page-gap-reduced);

  }

  .header-inner {

    padding: 13px;

  }

}

@media (max-width: 767px) {

  .scandi-header {

    padding: 0;

    border-radius: 0;

  }

  .header-inner {

    padding: 0px;

    flex-wrap: wrap;

    min-width: 0;

    gap: 0;

  }

  .btn-signup {

    margin-left: 0;

    font-size: 1rem;

    padding: 0.5em 1.3em;

  }

  .hero-split {

    grid-template-columns: 1fr;

    gap: clamp(18px,2vw,30px);

    padding: 8vw var(--page-gap-reduced) 2vw;

    max-width: 96vw;

  }

  .hero-img-side {

    margin: 0 auto;

    min-width: 0;

    max-width: 90vw;

    min-height: 210px;

    aspect-ratio: 3/4;

  }

  .hero-content {

    text-align: center;

    align-items: center;

    padding-top: 9px;

    gap: 23px;

  }

}



@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;}

/* LINKS */
.links-wrapper.links-block-clip31 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}



.links-block-clip31-title {

  margin-bottom: 32px;

  font-size: 2.1rem;

  font-weight: 700;

  letter-spacing: -0.02em;

  color: var(--accent);

  text-align: center;

}



.links-block-clip31-list {

  display: flex;

  flex-wrap: wrap;

  gap: 24px 28px;

  padding: 0;

  margin: 0;

  justify-content: center;

  

  list-style: none;

}



.links-block-clip31-list li {

  display: flex;

}



.links-block-clip31-list a {

  display: flex;

  align-items: center;

  text-decoration: none;

  font-size: 1.09rem;

  font-weight: 600;

  letter-spacing: 0.01em;

  padding: 14px 32px;

  border-radius: var(--radius);

  background: var(--accent-transparent);

  color: var(--dark);  

  box-shadow: 0 1.5px 12px var(--shadow);

  backdrop-filter: blur(13px) saturate(1.2);

  -webkit-backdrop-filter: blur(13px) saturate(1.2);

  transition: 

    background 0.25s var(--transition),

    box-shadow 0.25s var(--transition),

    transform 0.2s var(--transition);

  position: relative;

  overflow: hidden;

  min-width: 170px;

  justify-content: center;

  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);

  opacity: 0.96;

}



.links-block-clip31-list a:hover,

.links-block-clip31-list a:focus {

  background: var(--accent);

  color: var(--light);

  box-shadow: 0 4px 36px 0 var(--shadow);

  transform: translateY(-4px) scale(1.045) rotate(-1deg);

  opacity: 1;

}





.links-block-clip31-list a::before {

  content: '';

  display: inline-block;

  width: 1em;

  height: 1em;

  background: url('/path/to/icon.svg') no-repeat center/contain;

  margin-right: 0.67em;

}







@media (max-width: 768px) {

  .links-wrapper.links-block-clip31 {

    padding: calc(var(--page-gap) * 0.7);

  }

  .links-block-clip31-list {

    flex-direction: column;

    gap: 18px;

    align-items: stretch;

  }

  .links-block-clip31-list li,

  .links-block-clip31-list a {

    width: 100%;

    min-width: 0;

    justify-content: flex-start;

  }

  .links-block-clip31-list a {

    padding: 14px 18px;

    font-size: 1.02rem;

    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

    border-radius: calc(var(--radius) * 1.7);

  }

}

/* 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 */
.content-block-minimal33 {

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  max-width: 840px;

  margin: var(--section-gap) auto;

  padding: 40px 32px;

  box-sizing: border-box;

  overflow-x: hidden;

  transition: var(--transition);

  display: flex;

  justify-content: center;

  align-items: stretch;

}



.content-wrapper-pure620 {

  max-width: 700px;

  width: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

}





.text-content-breeze951 {

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.7;

  font-family: inherit;

  letter-spacing: 0.01em;

  transition: var(--transition);

}





.text-content-breeze951 h2,

.text-content-breeze951 h3 {

  color: var(--accent);

  margin-top: 0;

  margin-bottom: 0.7em;

  font-weight: 700;

  line-height: 1.2;

}



.text-content-breeze951 h2 {

  font-size: 2.1rem;

  margin-bottom: 1em;

}

.text-content-breeze951 h3 {

  font-size: 1.35rem;

  margin-bottom: 0.8em;

}





.text-content-breeze951 p {

  margin: 0 0 1.1em 0;

  font-size: 1.05em;

  line-height: 1.65;

}





.text-content-breeze951 ul,

.text-content-breeze951 ol {

  margin: 0 0 1.2em 1.5em;

  padding-left: 1.1em;

}



.text-content-breeze951 ul {

  list-style: disc inside;

}

.text-content-breeze951 ol {

  list-style: decimal inside;

}

.text-content-breeze951 li {

  margin-bottom: 0.5em;

  line-height: 1.6;

}





.text-content-breeze951 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content-breeze951 a:hover,

.text-content-breeze951 a:focus {

  color: var(--primary-hover);

  text-decoration: underline;

}





.text-content-breeze951 table {

  width: 100%;

  margin: 1.2em 0;

  border-collapse: separate;

  border-spacing: 0;

  overflow-x: auto;

  display: block;

  font-size: 1em;

  background: var(--light);

  box-shadow: none;

  border-radius: var(--radius);

}



.text-content-breeze951 thead {

  background: var(--accent-transparent);

}



.text-content-breeze951 th,

.text-content-breeze951 td {

  padding: 0.7em 1em;

  border: 1px solid var(--dark-muted);

  text-align: left;

  vertical-align: top;

}



.text-content-breeze951 th {

  font-weight: 600;

  color: var(--accent);

  background: var(--light);

}



.text-content-breeze951 tr:nth-child(even) td {

  background: rgba(171, 161, 251, 0.07);

}





.text-content-breeze951 b,

.text-content-breeze951 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-breeze951 i,

.text-content-breeze951 em {

  font-style: italic;

  color: var(--accent-hover);

}





@media (max-width: 768px) {

  .content-block-minimal33 {

    padding: 24px 12px;

    border-radius: calc(var(--radius) * 1.5);

  }

  .content-wrapper-pure620 {

    max-width: 100%;

    padding: 0;

  }

  .text-content-breeze951 table {

    font-size: 0.95em;

    overflow-x: auto;

    display: block;

    border-radius: var(--radius);

  }

}



@media (max-width: 480px) {

  .content-block-minimal33 {

    padding: 14px 4px;

  }

  .text-content-breeze951 h2 {

    font-size: 1.23rem;

    margin-bottom: 0.8em;

  }

  .text-content-breeze951 h3 {

    font-size: 1.04rem;

    margin-bottom: 0.5em;

  }

}

/* BODY1 */
.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);

  }

}

/* BODY2 */
.content-block-flare18 {

  box-sizing: border-box;

  position: relative;

  z-index: 1;

  overflow-x: hidden;

  width: 100%;

  padding: var(--section-gap) 0;

  background: linear-gradient(120deg, var(--accent-transparent) 0%, var(--light) 100%);

  box-shadow: var(--shadow);

}



.content-wrapper-spark218 {

  display: flex;

  justify-content: space-between;

  align-items: stretch;

  gap: 40px;

  max-width: 1160px;

  margin: 0 auto;

  padding: 32px 24px;

  box-sizing: border-box;

}



.text-content--blend721 {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

  max-width: 54%;

}



.text-content--blend721 .text-content {

  font-family: inherit;

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.65;

  margin-bottom: 40px;

  word-break: break-word;

}

.text-content--blend721 .text-content h2,

.text-content--blend721 .text-content h3 {

  color: var(--primary);

  margin: 0 0 16px 0;

  line-height: 1.2;

  font-weight: 700;

}

.text-content--blend721 .text-content h2 { font-size: 2.1rem; }

.text-content--blend721 .text-content h3 { font-size: 1.3rem; }

.text-content--blend721 .text-content p { margin-bottom: 16px; color: var(--dark-default);}

.text-content--blend721 .text-content ul, 

.text-content--blend721 .text-content ol {

  margin-bottom: 20px;

  padding-left: 1.2em;

}

.text-content--blend721 .text-content ul li,

.text-content--blend721 .text-content ol li {

  margin-bottom: 8px;

  font-size: inherit;

  color: var(--dark);

}

.text-content--blend721 .text-content ul li::marker {

  color: var(--accent);

}

.text-content--blend721 .text-content ol li::marker {

  color: var(--primary);

}

.text-content--blend721 .text-content a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--blend721 .text-content a:hover {

  color: var(--primary-hover);

}

.text-content--blend721 .text-content table {

  width: 100%;

  border-collapse: collapse;

  font-size: 1rem;

  margin-bottom: 20px;

  overflow-x: auto;

  display: block;

}

.text-content--blend721 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--blend721 .text-content td, 

.text-content--blend721 .text-content th {

  border: 1px solid var(--accent-secondary);

  padding: 8px 12px;

  text-align: left;

  color: var(--dark);

}

.text-content--blend721 .text-content th {

  color: var(--accent);

  font-weight: 700;

  background: var(--light);

}

.text-content--blend721 .text-content b { font-weight: bold; color: var(--primary); }

.text-content--blend721 .text-content i { font-style: italic; color: var(--accent); }



.cta-button--soft81 {

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 38px;

  border-radius: var(--radius);

  font-size: 1.07rem;

  font-weight: 600;

  box-shadow: 0px 6px 24px rgba(10,0,93,0.09), var(--shadow);

  outline: none;

  border: none;

  cursor: pointer;

  text-decoration: none;

  letter-spacing: 0.02em;

  transition: background 0.23s var(--transition), 

              color 0.18s var(--transition), 

              box-shadow 0.23s var(--transition), 

              transform 0.2s;

  will-change: transform;

}

.cta-button--soft81:hover, .cta-button--soft81:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0px 12px 28px rgba(10,0,93,0.16), var(--shadow);

}



.content-image--flare98 {

  flex: 0 0 auto;

  display: flex;

  align-items: center;

  min-width: 0;

  position: relative;

  max-width: 340px;

  width: 340px;

}

.image-border-svg-container-flare659 {

  position: relative;

  width: 340px;

  height: 500px;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: center;

}

.image-border-svg-flare659 {

  position: absolute;

  top: 0;

  left: 0;

  width: 340px;

  height: 500px;

  pointer-events: none;

  z-index: 2;

}

.image-inner-flare98 {

  position: absolute;

  top: 15px;

  left: 15px;

  width: 310px;

  height: 470px;

  overflow: hidden;

  z-index: 1;

  border-radius: 18px;

  box-shadow: 0 12px 32px rgba(10,0,93,0.11), var(--shadow);

  backdrop-filter: blur(2px);

  background: var(--light);

  display: flex;

  align-items: center;

  justify-content: center;

}

.image-inner-flare98 img {

  max-width: 100%;

  max-height: 100%;

  display: block;

  object-fit: cover;

  border-radius: 18px;

}





@media (max-width: 1024px) {

  .content-wrapper-spark218 {

    flex-direction: column;

    padding: 24px 10px;

    gap: 32px;

    align-items: stretch;

  }

  .text-content--blend721 {

    max-width: 100%;

    width: 100%;

    align-items: flex-start;

    margin-bottom: 0;

  }

  .content-image--flare98 {

    max-width: 340px;

    margin: 0 auto;

    width: 100%;

  }

  .image-border-svg-container-flare659 {

    width: 95vw;

    max-width: 340px;

    height: 70vw;

    max-height: 500px;

  }

  .image-border-svg-flare659,

  .image-inner-flare98 {

    width: 100% !important;

    height: 100% !important;

  }

}



@media (max-width: 768px) {

  .content-wrapper-spark218 {

    gap: 22px;

    padding: 14px 2vw;

  }

  .image-border-svg-container-flare659 {

    width: 88vw;

    max-width: 320px;

    height: 52vw;

    max-height: 400px;

  }

  .image-inner-flare98 {

    border-radius: 14px;

  }

}

@media (max-width: 480px) {

  .content-wrapper-spark218 {

    padding: 10px 1vw;

    gap: 12px;

  }

  .image-border-svg-container-flare659 {

    width: 98vw;

    height: 57vw;

    max-width: 320px;

    max-height: 320px;

  }

  .image-inner-flare98 {

    border-radius: 12px;

  }

  .text-content--blend721 .text-content h2 { font-size: 1.21rem; }

  .cta-button--soft81 {

    padding: 12px 18px;

    font-size: 1rem;

  }

}





.text-content--blend721 .text-content table {

  width: 100%;

  display: block;

  overflow-x: auto;

}

/* BODY3 */
.content-block-imgFocus65 {

  box-sizing: border-box;

  background: var(--light);

  border: 1.5px solid var(--accent);

  box-shadow: 0 10px 36px 0 var(--shadow), 0 1.5px 4px 0 var(--accent-transparent);

  border-radius: var(--radius);

  padding: 0;

  overflow-x: hidden;

  width: 100%;

  margin: 0 auto var(--section-gap) auto;

  max-width: 1240px;

  transition: var(--transition);

}



.content-wrapper-premium65 {

  display: flex;

  align-items: stretch;

  min-width: 0;

  width: 100%;

  gap: 0;

  background: var(--light);

  border-radius: var(--radius);

  overflow: hidden;

}



.image-side-flare65 {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  background: linear-gradient(120deg, var(--accent-transparent) 40%, transparent 100%);

  padding: 0 0 var(--section-gap) 0;

  min-width: 0;

  width: 56%;

  box-sizing: border-box;

  position: relative;

  z-index: 2;

  border-right: 1px solid var(--accent-secondary);

}



.image-side-flare65 img {

  max-width: 96%;

  height: auto;

  display: block;

  border-radius: calc(var(--radius) * 1.5) calc(var(--radius) * 1.5) calc(var(--radius) * 0.8) calc(var(--radius) * 0.8);

  box-shadow: 0 4px 28px var(--shadow), 0 0.5px 2px var(--accent-transparent);

  margin: var(--page-gap) auto 28px auto;

  backdrop-filter: blur(0.5px);

  background: var(--light);

  transition: transform 0.32s cubic-bezier(0.33, 1, 0.68, 1), box-shadow var(--transition);

}



.text-content--blend65 {

  display: flex;

  align-items: center;

  flex: 1 1 0;

  justify-content: center;

  min-width: 0;

  background: transparent;

  padding: var(--section-gap) calc(var(--section-gap) + 10px);

}



.text-content--blend65 .text-content {

  width: 100%;

  max-width: 410px;

  color: var(--dark);

  font-size: 1.125rem;

  font-family: inherit;

  line-height: 1.5;

  letter-spacing: 0;

  word-break: break-word;

  min-width: 0;

}



.text-content--blend65 h2,

.text-content--blend65 h3 {

  color: var(--accent);

  font-weight: 800;

  margin: 0 0 14px 0;

  letter-spacing: -0.5px;

}



.text-content--blend65 p {

  color: var(--dark-default);

  margin-bottom: 16px;

}



.text-content--blend65 ul,

.text-content--blend65 ol {

  padding-left: 1.25em;

  margin-bottom: 16px;

}



.text-content--blend65 ul li {

  list-style: disc inside;

  margin-bottom: 6px;

  color: var(--dark);

}



.text-content--blend65 ol li {

  list-style: decimal inside;

  margin-bottom: 6px;

  color: var(--dark);

}



.text-content--blend65 b,

.text-content--blend65 strong {

  color: var(--primary);

  font-weight: 700;

}



.text-content--blend65 i,

.text-content--blend65 em {

  color: var(--accent);

}



.text-content--blend65 a {

  color: var(--primary);

  text-decoration: underline;

  transition: var(--transition);

  font-weight: 600;

}

.text-content--blend65 a:hover {

  color: var(--accent-hover);

}



.text-content--blend65 table {

  width: 100%;

  border-collapse: collapse;

  margin: 18px 0;

  font-size: 0.97em;

  overflow-x: auto;

  display: block;

  background: var(--background);

  border: 1px solid var(--accent-secondary);

  border-radius: calc(var(--radius) * 0.8);

}

.text-content--blend65 thead {

  background: var(--accent-secondary);

}

.text-content--blend65 th,

.text-content--blend65 td {

  border: 1px solid var(--accent-transparent);

  padding: 6px 9px;

  text-align: left;

  color: var(--dark);

}



.cta-button--spot65 {

  display: block;

  margin: 32px auto 0 auto;

  padding: 16px 42px;

  background: var(--primary);

  color: var(--light);

  font-weight: 700;

  font-size: 1.18rem;

  border-radius: calc(var(--radius) * 2);

  box-shadow: 0 5px 20px var(--shadow), 0 1px 4px var(--accent-transparent);

  text-decoration: none;

  border: none;

  letter-spacing: 0.02em;

  cursor: pointer;

  transition: background 0.22s cubic-bezier(.4,.8,.6,1.4), transform 0.18s cubic-bezier(.25,1,.68,1.53), box-shadow 0.16s;

  outline: none;

  will-change: background, transform, box-shadow;

  min-width: 170px;

  max-width: 360px;

  text-align: center;

}



.cta-button--spot65:hover,

.cta-button--spot65:focus {

  background: var(--primary-hover);

  box-shadow: 0 10px 34px var(--shadow), 0 3px 8px var(--accent-transparent);

  transform: translateY(-2px) scale(1.025);

}



@media (max-width: 1090px) {

  .content-wrapper-premium65 {

    flex-direction: column;

  }

  .image-side-flare65, .text-content--blend65 {

    width: 100%;

    min-width: 0;

    border-right: none;

    border-bottom: 1px solid var(--accent-secondary);

  }

  .image-side-flare65 {

    border-bottom: none;

    padding-bottom: 0;

  }

  .cta-button--spot65 {

    margin: 22px auto 20px auto;

  }

  .text-content--blend65 {

    padding: var(--section-gap) var(--page-gap);

  }

}



@media (max-width: 768px) {

  .content-block-imgFocus65, .content-wrapper-premium65 {

    max-width: 100%;

    border-radius: 0;

    box-sizing: border-box;

  }

  .content-wrapper-premium65 {

    flex-direction: column;

    padding: 0;

    gap: 0;

  }

  .image-side-flare65 {

    padding: var(--page-gap) 0 8px 0;

    border-radius: 0;

    min-width: 0;

    width: 100%;

    box-shadow: none;

  }

  .text-content--blend65 {

    padding: var(--page-gap) var(--page-gap-reduced);

    max-width: 100%;

  }

  .text-content--blend65 .text-content {

    font-size: 1rem;

    max-width: 100%;

    min-width: 0;

  }

}

/* BODY4 */
.content-block-reverse28 {

  width: 100%;

  max-width: 100vw;

  box-sizing: border-box;

  overflow-x: hidden;

  background: var(--light);

  padding: calc(var(--section-gap) * 1.5) 0;

}



.content-wrapper-blend28 {

  display: grid;

  grid-template-rows: auto minmax(0, 1fr);

  place-items: center;

  max-width: 960px;

  margin: 0 auto;

  row-gap: 32px;

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 40px 32px 0 32px;

  transition: box-shadow 0.35s var(--transition), transform 0.4s var(--transition);

  animation: fadeIn28 1.15s cubic-bezier(0.44,0,0.36,1) 0s 1 backwards;

}



@keyframes fadeIn28 {

  0% {

    opacity: 0;

    transform: translateY(40px) scale(0.98);

  }

  100% {

    opacity: 1;

    transform: translateY(0) scale(1);

  }

}



.text-content--spark28 {

  width: 100%;

  max-width: 580px;

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.7;

  z-index: 2;

  padding-bottom: 12px;

  

}



.text-content--spark28 h2,

.text-content--spark28 h3 {

  color: var(--primary);

  margin-bottom: 18px;

  margin-top: 0;

  font-weight: 700;

  line-height: 1.2;

}



.text-content--spark28 h2 {

  font-size: 2.1rem;

}

.text-content--spark28 h3 {

  font-size: 1.35rem;

}



.text-content--spark28 p {

  margin: 0 0 18px 0;

}



.text-content--spark28 ul,

.text-content--spark28 ol {

  margin: 0 0 18px 20px;

  padding: 0 0 0 16px;

  color: var(--dark-muted);

  font-size: 1rem;

}



.text-content--spark28 li {

  margin-bottom: 10px;

  

  position: relative;

}

.text-content--spark28 ul>li::before {

  content: '';

  background: var(--accent);

  border-radius: 50%;

  width: 7px;

  height: 7px;

  display: inline-block;

  margin-right: 10px;

  vertical-align: middle;

  box-shadow: 0 1px 6px var(--accent-transparent);

}



.text-content--spark28 a {

  color: var(--accent);

  font-weight: 600;

  text-decoration: underline;

  transition: color 0.20s var(--transition);

}

.text-content--spark28 a:hover, .text-content--spark28 a:focus {

  color: var(--primary);

  text-decoration: none;

}



.text-content--spark28 table {

  width: 100%;

  border-collapse: collapse;

  margin: 20px 0;

  font-size: 0.98rem;

  overflow-x: auto;

  display: block;

}



.text-content--spark28 thead {

  background: var(--accent-transparent);

}

.text-content--spark28 th, .text-content--spark28 td {

  border: 1px solid var(--dark-muted);

  padding: 9px 12px;

  text-align: left;

}

.text-content--spark28 th {

  font-weight: 700;

  color: var(--accent);

}

.text-content--spark28 td {

  color: var(--dark-default);

}



.cta-button--soft28.button {

  background: var(--primary);

  color: var(--light);

  padding: 14px 36px;

  border: none;

  border-radius: var(--radius);

  font-size: 1.08rem;

  font-weight: 600;

  display: inline-block;

  box-shadow: 0 4px 18px rgba(149, 24, 48, 0.08), 0 1.5px 4px rgba(0,0,0, .07);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.21s var(--transition);

  margin-top: 23px;

  letter-spacing: 0.01em;

  cursor: pointer;

  min-width: 130px;

  text-align: center;

  position: relative;

  outline: none;

  will-change: transform, box-shadow;

}



.cta-button--soft28.button:hover,

.cta-button--soft28.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 6px 24px rgba(252, 101, 131, 0.16), 0 2px 12px var(--accent-transparent);

  transform: translateY(-2px) scale(1.025);

}



.content-image--flare28 {

  width: 100%;

  display: flex;

  justify-content: center;

  align-items: end;

  padding: 0 0 16px 0;

  

  margin: 0 auto;

}



.content-image--flare28 img,

.content-image--flare28 > * {

  width: 100%;

  max-width: 1024px;

  height: auto;

  box-shadow: 0 6px 36px var(--accent-transparent), 0 2px 10px rgba(0,0,0, .06);

  border-radius: 18px;

  border: 2.5px solid var(--accent-secondary, var(--accent));

  transition: box-shadow 0.30s var(--transition), border-color 0.23s;

  background: var(--light);

  

  backdrop-filter: blur(0.5px);

  object-fit: cover;

  display: block;

}



@media (max-width: 1200px) {

  .content-wrapper-blend28 {

    max-width: 100vw;

    padding-left: 5vw;

    padding-right: 5vw;

  }

  .content-image--flare28 img,

  .content-image--flare28 > * {

    max-width: 90vw;

  }

}



@media (max-width: 768px) {

  .content-wrapper-blend28 {

    padding: 32px 7vw 0 7vw;

    row-gap: 21px;

    box-shadow: none;

  }

  .text-content--spark28 {

    max-width: 100%;

    font-size: 1rem;

    padding-bottom: 7px;

  }

  .cta-button--soft28.button {

    padding: 11px 24px;

    font-size: 1rem;

    margin-top: 16px;

    min-width: 110px;

  }

  .content-image--flare28 img,

  .content-image--flare28 > * {

    border-radius: 11px;

    max-width: 96vw;

  }

}



@media (max-width: 480px) {

  .content-wrapper-blend28 {

    padding: 20px 1vw 0 1vw;

    border-radius: 0;

    row-gap: 16px;

  }

  .content-block-reverse28 {

    padding: 23px 0;

  }

  .content-image--flare28 img,

  .content-image--flare28 > * {

    border-radius: 6px;

    border-width: 1px;

    max-width: 99vw;

  }

}

/* BODY5 */
.content-block-minimal33 {

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  max-width: 840px;

  margin: var(--section-gap) auto;

  padding: 40px 32px;

  box-sizing: border-box;

  overflow-x: hidden;

  transition: var(--transition);

  display: flex;

  justify-content: center;

  align-items: stretch;

}



.content-wrapper-pure620 {

  max-width: 700px;

  width: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

}





.text-content-breeze951 {

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.7;

  font-family: inherit;

  letter-spacing: 0.01em;

  transition: var(--transition);

}





.text-content-breeze951 h2,

.text-content-breeze951 h3 {

  color: var(--accent);

  margin-top: 0;

  margin-bottom: 0.7em;

  font-weight: 700;

  line-height: 1.2;

}



.text-content-breeze951 h2 {

  font-size: 2.1rem;

  margin-bottom: 1em;

}

.text-content-breeze951 h3 {

  font-size: 1.35rem;

  margin-bottom: 0.8em;

}





.text-content-breeze951 p {

  margin: 0 0 1.1em 0;

  font-size: 1.05em;

  line-height: 1.65;

}





.text-content-breeze951 ul,

.text-content-breeze951 ol {

  margin: 0 0 1.2em 1.5em;

  padding-left: 1.1em;

}



.text-content-breeze951 ul {

  list-style: disc inside;

}

.text-content-breeze951 ol {

  list-style: decimal inside;

}

.text-content-breeze951 li {

  margin-bottom: 0.5em;

  line-height: 1.6;

}





.text-content-breeze951 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content-breeze951 a:hover,

.text-content-breeze951 a:focus {

  color: var(--primary-hover);

  text-decoration: underline;

}





.text-content-breeze951 table {

  width: 100%;

  margin: 1.2em 0;

  border-collapse: separate;

  border-spacing: 0;

  overflow-x: auto;

  display: block;

  font-size: 1em;

  background: var(--light);

  box-shadow: none;

  border-radius: var(--radius);

}



.text-content-breeze951 thead {

  background: var(--accent-transparent);

}



.text-content-breeze951 th,

.text-content-breeze951 td {

  padding: 0.7em 1em;

  border: 1px solid var(--dark-muted);

  text-align: left;

  vertical-align: top;

}



.text-content-breeze951 th {

  font-weight: 600;

  color: var(--accent);

  background: var(--light);

}



.text-content-breeze951 tr:nth-child(even) td {

  background: rgba(171, 161, 251, 0.07);

}





.text-content-breeze951 b,

.text-content-breeze951 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-breeze951 i,

.text-content-breeze951 em {

  font-style: italic;

  color: var(--accent-hover);

}





@media (max-width: 768px) {

  .content-block-minimal33 {

    padding: 24px 12px;

    border-radius: calc(var(--radius) * 1.5);

  }

  .content-wrapper-pure620 {

    max-width: 100%;

    padding: 0;

  }

  .text-content-breeze951 table {

    font-size: 0.95em;

    overflow-x: auto;

    display: block;

    border-radius: var(--radius);

  }

}



@media (max-width: 480px) {

  .content-block-minimal33 {

    padding: 14px 4px;

  }

  .text-content-breeze951 h2 {

    font-size: 1.23rem;

    margin-bottom: 0.8em;

  }

  .text-content-breeze951 h3 {

    font-size: 1.04rem;

    margin-bottom: 0.5em;

  }

}

/* blog/blogpreview1.css */
.bloghero-glowline318 {

  width: 100%;

  max-width: 1080px;

  margin: 0 auto var(--section-gap);

  position: relative;

  border-radius: 2.1em;

  padding: 3.1rem 1.1rem 2.4rem 1.1rem;

  background: linear-gradient(115deg, var(--background) 0%, var(--light) 100%);

  box-shadow: 0 7px 25px var(--shadow);

  text-align: center;

  overflow: hidden;

  z-index: 1;

}



.bloghero-glowline318 .bloghero-glowdecor-glowline318 {

  position: absolute;

  left: 8%; top: 0;

  width: 340px; height: 158px;

  pointer-events: none;

  opacity: 0.58;

  z-index: 0;

}

.bloghero-glowline318 .bloghero-glowdecor-glowline318::before,

.bloghero-glowline318 .bloghero-glowdecor-glowline318::after {

  content: "";

  position: absolute;

  border-radius: 50%;

  z-index: 0;

  filter: blur(34px);

  opacity: .57;

}

.bloghero-glowline318 .bloghero-glowdecor-glowline318::before {

  left: 0; top: 9px; width: 122px; height: 122px;

  background: radial-gradient(circle at 65% 60%, var(--primary) 60%, transparent 100%);

}

.bloghero-glowline318 .bloghero-glowdecor-glowline318::after {

  right: -2vw; top: 94px; width: 83px; height: 83px;

  background: radial-gradient(circle at 35% 60%, var(--accent-secondary, #ABA1FB) 80%, transparent 100%);

}





.bloghero-glowline318::before {

  content: '';

  display: block;

  position: absolute;

  left: 50%; top: 0;

  transform: translateX(-50%);

  width: 74vw; max-width: 660px; height: 36vw; max-height: 190px;

  background: radial-gradient(circle at 50% 18%, var(--accent) 0%, var(--primary) 32%, transparent 95%);

  opacity: .16;

  filter: blur(18px);

  pointer-events: none;

  z-index: 0;

}





.bloghero-infowrap-glowline318 {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

}





.bloghero-title-glowline318 {

  font-size: var(--font-size-h1);

  font-weight: 900;

  letter-spacing: -0.02em;

  color: var(--primary);

  line-height: 1.13;

  margin: 0 0 0.6em 0;

  background: linear-gradient(87deg, var(--primary) 45%, var(--accent) 92%);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  text-shadow:

    0 4px 22px var(--accent-secondary, #ABA1FB),

    0 1.5px 6px #0003; 

  animation: blogheroFadeTitle318 1.1s cubic-bezier(.16,.95,.19,1.01) both;

  transition: text-shadow .16s;

  position: relative;

}

@keyframes blogheroFadeTitle318 {

  from { opacity: 0; transform: translateY(36px) scale(0.96);}

  to   { opacity: 1; transform: none;}

}





.bloghero-glowline-glowline318 {

  width: 110px;

  height: 5.5px;

  background: linear-gradient(90deg, var(--primary) 18%, var(--accent) 99%);

  margin: 0 auto;

  border-radius: 7px;

  box-shadow: 0 2px 27px var(--accent), 0 0 16px var(--primary);

  opacity: 0;

  transform: scaleX(0.72);

  animation: blogheroGlowLineIn318 1s .55s cubic-bezier(.41,1.45,.29,1) forwards;

  transition: background .2s;

}

@keyframes blogheroGlowLineIn318 {

  from { opacity: 0; transform: scaleX(0.3);}

  80%  { opacity: 1; transform: scaleX(1.18);}

  to   { opacity: 1; transform: scaleX(1);}

}





@media (max-width: 700px) {

  .bloghero-glowline318 {

    padding: 2rem 0.25rem 1.2rem 0.25rem;

    border-radius: 1.1em;

    max-width: 99vw;

  }

  .bloghero-title-glowline318 {

    font-size: var(--font-size-h2);

    margin: 0 0 0.45em 0;

  }

  .bloghero-glowline-glowline318 { width: 55px; height: 2.3px; }

  .bloghero-glowline318 .bloghero-glowdecor-glowline318 { top: -12px; width: 64vw; height: 70px;}

  .bloghero-glowline318 .bloghero-glowdecor-glowline318::before,

  .bloghero-glowline318 .bloghero-glowdecor-glowline318::after { filter: blur(12px);}

}

@media (max-width: 420px) {

  .bloghero-title-glowline318 { font-size: var(--font-size-h3); }

  .bloghero-glowline-glowline318 { width: 31vw; margin: 0 auto; height: 1.2px; }

  .bloghero-glowline318 { padding: .73rem 0.04rem .87rem 0.04rem; }

}

/* blog/blogindex4.css */
.pillbox-omega903 {

  width: 100%;

  box-sizing: border-box;

  padding-top: 2.4rem;

}



.pillbox-title-omega903 {

  font-size: 2.13rem;

  font-weight: 900;

  letter-spacing: -0.014em;

  text-align: center;

  color: var(--primary);

  margin: 38px 0 36px 0;

  position: relative;

}

.pillbox-title-omega903::after {

  content: '';

  display: block;

  margin: 1.1em auto 0 auto;

  width: 63px;

  height: 6px;

  background: linear-gradient(93deg, var(--primary), var(--accent-secondary, #ABA1FB));

  border-radius: 9px;

  opacity: .38;

}



.pillbox-omega903 .pillbox-grid-omega903 {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2.1rem 1.2rem;

  max-width: 1190px;

  margin: 0 auto 1.7rem auto;

  width: 100%;

  box-sizing: border-box;

}





.pillbox-omega903 .category-card {

  display: flex;

  flex-direction: column;

  border-radius: 44px;

  background: var(--light);

  box-shadow: 0 12px 30px -10px var(--shadow), 0 3px 7px var(--accent-transparent);

  transition: box-shadow .27s var(--transition), transform .21s var(--transition);

  min-width: 0;

}



.pillbox-omega903 .category-card:hover,

.pillbox-omega903 .category-card:focus-within {

  box-shadow: 0 22px 44px 0 var(--primary-hover), 0 16px 41px var(--accent-transparent);

  transform: translateY(-6px) scale(1.019);

  z-index: 2;

}





.pillbox-omega903 .category-card img {

  width: 100%;

  height: 200px;

  object-fit: cover;

  border-radius: 44px 44px 0 0;

  filter: grayscale(7%) brightness(1) contrast(1.09);

  transition: filter .18s, box-shadow .14s;

  display: block;

  box-shadow: 0 2.5px 9px 0 var(--accent-transparent);

}



.pillbox-omega903 .category-card:hover img,

.pillbox-omega903 .category-card:focus-within img {

  filter: none;

  box-shadow: 0 6px 18px 0 var(--primary-hover);

}





.pillbox-omega903 .category-card .category-info {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 0.4em;

  background: rgba(245,247,255,0.92);

  border-radius: 0 0 44px 44px;

  min-height: 104px;

  box-sizing: border-box;

  text-align: left;

  -webkit-backdrop-filter: blur(4px);

  backdrop-filter: blur(4px);

  z-index: 1;

  padding: 1.09em 1.16em 1.17em 1.09em;

  position: relative;

}





.pillbox-omega903 .category-card .category-info .category-title {

  color: var(--primary);

  font-size: 1.18rem;

  font-weight: 900;

  margin: 0 0 0.41em 0;

  letter-spacing: 0.008em;

  position: relative;

  z-index: 2;

}

.pillbox-omega903 .category-card .category-info .category-title::after {

  content: "";

  position: absolute;

  left: 1px; bottom: -0.3em;

  width: 27px;

  height: 4px;

  border-radius: 2px;

  background: var(--accent);

  opacity: 0.17;

}





.pillbox-omega903 .category-card .category-info .category-rating {

  display: inline-block;

  margin-bottom: 0.27em;

  width: 27px; height: 27px;

  border-radius: 99em;

  background: radial-gradient(circle at 60% 30%, var(--accent) 48%, var(--primary) 81%);

  box-shadow: 0 0 0 6px var(--accent-transparent);

  position: relative;

  margin-right: 9px;

  animation: pill-pulse903 2.4s infinite;

}

.pillbox-omega903 .category-card:hover .category-info .category-rating,

.pillbox-omega903 .category-card:focus-within .category-info .category-rating {

  animation: pill-pulse903 1s infinite;

  box-shadow: 0 0 0 14px var(--primary-hover);

}



@keyframes pill-pulse903 {

  0% { box-shadow: 0 0 0 6px var(--accent-transparent);}

  50% { box-shadow: 0 0 0 14px var(--accent-secondary, #ABA1FB);}

  100% { box-shadow: 0 0 0 6px var(--accent-transparent);}

}





.pillbox-omega903 .category-card .category-info .category-btn {

  display: inline-block;

  padding: 0.72em 1.19em;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  color: var(--light);

  font-weight: 700;

  font-size: 1.02rem;

  border-radius: 22px;

  box-shadow: 0 2px 9px 0 var(--primary-hover);

  text-decoration: none;

  transition: background .16s, color .15s, box-shadow .13s, opacity .12s, transform .17s;

  border: none;

  cursor: pointer;

  opacity: 1;

  pointer-events: auto;

  margin-top: 6px;

}





@media (max-width: 900px) {

  .pillbox-title-omega903 {

    font-size: 1.13rem;

    margin-bottom: 16px;

  }

  .pillbox-omega903 .pillbox-grid-omega903 {

    grid-template-columns: 1fr 1fr;

    gap: 1rem 0.5rem;

    padding-left: 2vw;

    padding-right: 2vw;

  }

  .pillbox-omega903 .category-card img {

    height: 200px;

    border-radius: 18px 18px 0 0;

  }

  .pillbox-omega903 .category-card .category-info {

    min-height: 31px;



    border-radius: 0 0 18px 18px;

  }

  .pillbox-omega903 .category-card .category-info .category-title {

    font-size: .93rem;

  }

  .pillbox-omega903 .category-card .category-info .category-rating {

    width: 13px; height: 13px;

  }

  .pillbox-omega903 .category-card .category-info .category-btn {

    font-size: .88rem;

    padding: 0.34em .67em;

    border-radius: 11px;

    margin-top: 2px;

  }

}



@media (max-width: 600px) {

  .pillbox-omega903 {

    padding: 8px 0 0 0;

  }

  .pillbox-title-omega903 {

    font-size: 0.95rem;

    margin: 8px 0 8px 0;

  }

  .pillbox-title-omega903::after {

    margin: .5em auto 0 auto;

    width: 19px;

    height: 2.5px;

    border-radius: 2px;

  }

  .pillbox-omega903 .pillbox-grid-omega903 {

    grid-template-columns: 1fr;

    gap: 0.73rem 0;

    max-width: 99vw;

    padding-left: 1vw;

    padding-right: 1vw;

  }

  .pillbox-omega903 .category-card {

    border-radius: 9px;

  }

  .pillbox-omega903 .category-card img {

    height: 200px;

    border-radius: 9px 9px 0 0;

  }

  .pillbox-omega903 .category-card .category-info {

    min-height: 13px;

   

    border-radius: 0 0 9px 9px;

  }

  .pillbox-omega903 .category-card .category-info .category-title {

    font-size: .74rem;

    margin-bottom: .19em;

  }

  .pillbox-omega903 .category-card .category-info .category-rating {

    width: 7px; height: 7px;

    margin-bottom: .12em;

  }

  .pillbox-omega903 .category-card .category-info .category-btn {

    font-size: .78rem;

    padding: 0.19em .37em;

    border-radius: 5px;

    margin-top: 1px;

  }

}

/* blog/reviewtableofcontent.css */
.sidebar-rew {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 20px;

    margin: 0 0 20px 0; 

  

}



.sidebar-rew h3 {

  font-size: var(--font-size-h2);

  font-weight: var(--font-weight-heading);

  margin-bottom: 15px;

  color: var(--dark);

}



.sidebar-rew ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



.sidebar-rew ul li {

  margin-bottom: 10px;

  border-radius: var(--radius);

  transition: var(--transition);

}



.sidebar-rew ul li a {

  display: block;

  padding: 10px 15px;

  background: var(--light);

  color: var(--dark);

  text-decoration: none;

  font-size: var(--font-size-base);

  font-weight: var(--font-weight-body);

  border-radius: var(--radius);

  box-shadow: 0 1px 3px rgba(0,0,0,0.08);

  transition: var(--transition);

}



.sidebar-rew ul li a:hover {

  background: var(--accent-transparent);

  color: var(--dark);

}



@media (max-width: 768px) {

  .sidebar-rew {

    order: -1; 

    margin-bottom: 20px;

  }

}

/* blog/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* 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);
  }
}

/* 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);
  }
}

/* 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);
  }
}

/* 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);
  }
}

/* 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);
  }
}

/* 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);
  }
}

/* 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);
  }
}

/* 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);
  }
}

/* aussie-sluts/blogpreview1.css */
.bloghero-glowline318 {

  width: 100%;

  max-width: 1080px;

  margin: 0 auto var(--section-gap);

  position: relative;

  border-radius: 2.1em;

  padding: 3.1rem 1.1rem 2.4rem 1.1rem;

  background: linear-gradient(115deg, var(--background) 0%, var(--light) 100%);

  box-shadow: 0 7px 25px var(--shadow);

  text-align: center;

  overflow: hidden;

  z-index: 1;

}



.bloghero-glowline318 .bloghero-glowdecor-glowline318 {

  position: absolute;

  left: 8%; top: 0;

  width: 340px; height: 158px;

  pointer-events: none;

  opacity: 0.58;

  z-index: 0;

}

.bloghero-glowline318 .bloghero-glowdecor-glowline318::before,

.bloghero-glowline318 .bloghero-glowdecor-glowline318::after {

  content: "";

  position: absolute;

  border-radius: 50%;

  z-index: 0;

  filter: blur(34px);

  opacity: .57;

}

.bloghero-glowline318 .bloghero-glowdecor-glowline318::before {

  left: 0; top: 9px; width: 122px; height: 122px;

  background: radial-gradient(circle at 65% 60%, var(--primary) 60%, transparent 100%);

}

.bloghero-glowline318 .bloghero-glowdecor-glowline318::after {

  right: -2vw; top: 94px; width: 83px; height: 83px;

  background: radial-gradient(circle at 35% 60%, var(--accent-secondary, #ABA1FB) 80%, transparent 100%);

}





.bloghero-glowline318::before {

  content: '';

  display: block;

  position: absolute;

  left: 50%; top: 0;

  transform: translateX(-50%);

  width: 74vw; max-width: 660px; height: 36vw; max-height: 190px;

  background: radial-gradient(circle at 50% 18%, var(--accent) 0%, var(--primary) 32%, transparent 95%);

  opacity: .16;

  filter: blur(18px);

  pointer-events: none;

  z-index: 0;

}





.bloghero-infowrap-glowline318 {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

}





.bloghero-title-glowline318 {

  font-size: var(--font-size-h1);

  font-weight: 900;

  letter-spacing: -0.02em;

  color: var(--primary);

  line-height: 1.13;

  margin: 0 0 0.6em 0;

  background: linear-gradient(87deg, var(--primary) 45%, var(--accent) 92%);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  text-shadow:

    0 4px 22px var(--accent-secondary, #ABA1FB),

    0 1.5px 6px #0003; 

  animation: blogheroFadeTitle318 1.1s cubic-bezier(.16,.95,.19,1.01) both;

  transition: text-shadow .16s;

  position: relative;

}

@keyframes blogheroFadeTitle318 {

  from { opacity: 0; transform: translateY(36px) scale(0.96);}

  to   { opacity: 1; transform: none;}

}





.bloghero-glowline-glowline318 {

  width: 110px;

  height: 5.5px;

  background: linear-gradient(90deg, var(--primary) 18%, var(--accent) 99%);

  margin: 0 auto;

  border-radius: 7px;

  box-shadow: 0 2px 27px var(--accent), 0 0 16px var(--primary);

  opacity: 0;

  transform: scaleX(0.72);

  animation: blogheroGlowLineIn318 1s .55s cubic-bezier(.41,1.45,.29,1) forwards;

  transition: background .2s;

}

@keyframes blogheroGlowLineIn318 {

  from { opacity: 0; transform: scaleX(0.3);}

  80%  { opacity: 1; transform: scaleX(1.18);}

  to   { opacity: 1; transform: scaleX(1);}

}





@media (max-width: 700px) {

  .bloghero-glowline318 {

    padding: 2rem 0.25rem 1.2rem 0.25rem;

    border-radius: 1.1em;

    max-width: 99vw;

  }

  .bloghero-title-glowline318 {

    font-size: var(--font-size-h2);

    margin: 0 0 0.45em 0;

  }

  .bloghero-glowline-glowline318 { width: 55px; height: 2.3px; }

  .bloghero-glowline318 .bloghero-glowdecor-glowline318 { top: -12px; width: 64vw; height: 70px;}

  .bloghero-glowline318 .bloghero-glowdecor-glowline318::before,

  .bloghero-glowline318 .bloghero-glowdecor-glowline318::after { filter: blur(12px);}

}

@media (max-width: 420px) {

  .bloghero-title-glowline318 { font-size: var(--font-size-h3); }

  .bloghero-glowline-glowline318 { width: 31vw; margin: 0 auto; height: 1.2px; }

  .bloghero-glowline318 { padding: .73rem 0.04rem .87rem 0.04rem; }

}

/* aussie-sluts/blogindex4.css */
.pillbox-omega903 {

  width: 100%;

  box-sizing: border-box;

  padding-top: 2.4rem;

}



.pillbox-title-omega903 {

  font-size: 2.13rem;

  font-weight: 900;

  letter-spacing: -0.014em;

  text-align: center;

  color: var(--primary);

  margin: 38px 0 36px 0;

  position: relative;

}

.pillbox-title-omega903::after {

  content: '';

  display: block;

  margin: 1.1em auto 0 auto;

  width: 63px;

  height: 6px;

  background: linear-gradient(93deg, var(--primary), var(--accent-secondary, #ABA1FB));

  border-radius: 9px;

  opacity: .38;

}



.pillbox-omega903 .pillbox-grid-omega903 {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2.1rem 1.2rem;

  max-width: 1190px;

  margin: 0 auto 1.7rem auto;

  width: 100%;

  box-sizing: border-box;

}





.pillbox-omega903 .category-card {

  display: flex;

  flex-direction: column;

  border-radius: 44px;

  background: var(--light);

  box-shadow: 0 12px 30px -10px var(--shadow), 0 3px 7px var(--accent-transparent);

  transition: box-shadow .27s var(--transition), transform .21s var(--transition);

  min-width: 0;

}



.pillbox-omega903 .category-card:hover,

.pillbox-omega903 .category-card:focus-within {

  box-shadow: 0 22px 44px 0 var(--primary-hover), 0 16px 41px var(--accent-transparent);

  transform: translateY(-6px) scale(1.019);

  z-index: 2;

}





.pillbox-omega903 .category-card img {

  width: 100%;

  height: 200px;

  object-fit: cover;

  border-radius: 44px 44px 0 0;

  filter: grayscale(7%) brightness(1) contrast(1.09);

  transition: filter .18s, box-shadow .14s;

  display: block;

  box-shadow: 0 2.5px 9px 0 var(--accent-transparent);

}



.pillbox-omega903 .category-card:hover img,

.pillbox-omega903 .category-card:focus-within img {

  filter: none;

  box-shadow: 0 6px 18px 0 var(--primary-hover);

}





.pillbox-omega903 .category-card .category-info {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 0.4em;

  background: rgba(245,247,255,0.92);

  border-radius: 0 0 44px 44px;

  min-height: 104px;

  box-sizing: border-box;

  text-align: left;

  -webkit-backdrop-filter: blur(4px);

  backdrop-filter: blur(4px);

  z-index: 1;

  padding: 1.09em 1.16em 1.17em 1.09em;

  position: relative;

}





.pillbox-omega903 .category-card .category-info .category-title {

  color: var(--primary);

  font-size: 1.18rem;

  font-weight: 900;

  margin: 0 0 0.41em 0;

  letter-spacing: 0.008em;

  position: relative;

  z-index: 2;

}

.pillbox-omega903 .category-card .category-info .category-title::after {

  content: "";

  position: absolute;

  left: 1px; bottom: -0.3em;

  width: 27px;

  height: 4px;

  border-radius: 2px;

  background: var(--accent);

  opacity: 0.17;

}





.pillbox-omega903 .category-card .category-info .category-rating {

  display: inline-block;

  margin-bottom: 0.27em;

  width: 27px; height: 27px;

  border-radius: 99em;

  background: radial-gradient(circle at 60% 30%, var(--accent) 48%, var(--primary) 81%);

  box-shadow: 0 0 0 6px var(--accent-transparent);

  position: relative;

  margin-right: 9px;

  animation: pill-pulse903 2.4s infinite;

}

.pillbox-omega903 .category-card:hover .category-info .category-rating,

.pillbox-omega903 .category-card:focus-within .category-info .category-rating {

  animation: pill-pulse903 1s infinite;

  box-shadow: 0 0 0 14px var(--primary-hover);

}



@keyframes pill-pulse903 {

  0% { box-shadow: 0 0 0 6px var(--accent-transparent);}

  50% { box-shadow: 0 0 0 14px var(--accent-secondary, #ABA1FB);}

  100% { box-shadow: 0 0 0 6px var(--accent-transparent);}

}





.pillbox-omega903 .category-card .category-info .category-btn {

  display: inline-block;

  padding: 0.72em 1.19em;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  color: var(--light);

  font-weight: 700;

  font-size: 1.02rem;

  border-radius: 22px;

  box-shadow: 0 2px 9px 0 var(--primary-hover);

  text-decoration: none;

  transition: background .16s, color .15s, box-shadow .13s, opacity .12s, transform .17s;

  border: none;

  cursor: pointer;

  opacity: 1;

  pointer-events: auto;

  margin-top: 6px;

}





@media (max-width: 900px) {

  .pillbox-title-omega903 {

    font-size: 1.13rem;

    margin-bottom: 16px;

  }

  .pillbox-omega903 .pillbox-grid-omega903 {

    grid-template-columns: 1fr 1fr;

    gap: 1rem 0.5rem;

    padding-left: 2vw;

    padding-right: 2vw;

  }

  .pillbox-omega903 .category-card img {

    height: 200px;

    border-radius: 18px 18px 0 0;

  }

  .pillbox-omega903 .category-card .category-info {

    min-height: 31px;



    border-radius: 0 0 18px 18px;

  }

  .pillbox-omega903 .category-card .category-info .category-title {

    font-size: .93rem;

  }

  .pillbox-omega903 .category-card .category-info .category-rating {

    width: 13px; height: 13px;

  }

  .pillbox-omega903 .category-card .category-info .category-btn {

    font-size: .88rem;

    padding: 0.34em .67em;

    border-radius: 11px;

    margin-top: 2px;

  }

}



@media (max-width: 600px) {

  .pillbox-omega903 {

    padding: 8px 0 0 0;

  }

  .pillbox-title-omega903 {

    font-size: 0.95rem;

    margin: 8px 0 8px 0;

  }

  .pillbox-title-omega903::after {

    margin: .5em auto 0 auto;

    width: 19px;

    height: 2.5px;

    border-radius: 2px;

  }

  .pillbox-omega903 .pillbox-grid-omega903 {

    grid-template-columns: 1fr;

    gap: 0.73rem 0;

    max-width: 99vw;

    padding-left: 1vw;

    padding-right: 1vw;

  }

  .pillbox-omega903 .category-card {

    border-radius: 9px;

  }

  .pillbox-omega903 .category-card img {

    height: 200px;

    border-radius: 9px 9px 0 0;

  }

  .pillbox-omega903 .category-card .category-info {

    min-height: 13px;

   

    border-radius: 0 0 9px 9px;

  }

  .pillbox-omega903 .category-card .category-info .category-title {

    font-size: .74rem;

    margin-bottom: .19em;

  }

  .pillbox-omega903 .category-card .category-info .category-rating {

    width: 7px; height: 7px;

    margin-bottom: .12em;

  }

  .pillbox-omega903 .category-card .category-info .category-btn {

    font-size: .78rem;

    padding: 0.19em .37em;

    border-radius: 5px;

    margin-top: 1px;

  }

}

/* aussie-sluts/reviewtableofcontent.css */
.sidebar-rew {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 20px;

    margin: 0 0 20px 0; 

  

}



.sidebar-rew h3 {

  font-size: var(--font-size-h2);

  font-weight: var(--font-weight-heading);

  margin-bottom: 15px;

  color: var(--dark);

}



.sidebar-rew ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



.sidebar-rew ul li {

  margin-bottom: 10px;

  border-radius: var(--radius);

  transition: var(--transition);

}



.sidebar-rew ul li a {

  display: block;

  padding: 10px 15px;

  background: var(--light);

  color: var(--dark);

  text-decoration: none;

  font-size: var(--font-size-base);

  font-weight: var(--font-weight-body);

  border-radius: var(--radius);

  box-shadow: 0 1px 3px rgba(0,0,0,0.08);

  transition: var(--transition);

}



.sidebar-rew ul li a:hover {

  background: var(--accent-transparent);

  color: var(--dark);

}



@media (max-width: 768px) {

  .sidebar-rew {

    order: -1; 

    margin-bottom: 20px;

  }

}

/* aussie-sluts/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* aussie-sluts/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);
  }
}

/* aussie-sluts/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);
  }
}

/* aussie-sluts/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);
  }
}