/* 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: color27 */
:root {
    --primary: #ff7f50;
    --primary-hover: #ff9970;
    --accent: #4682b4;
    --accent-hover: #5a91c0;
    --accent-secondary: #6e9fcd;
    --accent-transparent: rgba(70, 130, 180, 0.3);
    --background: #fffaf0;
    --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;

  }

}







@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;}







.header-block-asym789__hero {

  padding: calc(var(--section-gap) + 12px) var(--page-gap);

  background: var(--accent-transparent);

  display: flex;

  justify-content: center;

  align-items: flex-start;

  flex-direction: column;

  min-height: 510px;

  box-sizing: border-box;

  position: relative;

  z-index: 5;

}



.header-block-asym789__hero-inner {

  display: flex;

  flex-direction: column;

  align-items: center;

  background: var(--light);

  border-radius: calc(var(--radius) * 2);

  padding: 40px 28px 32px 28px;

  margin: 0 auto;

  box-shadow: 0 12px 44px 0 rgba(0,0,0,0.13);

  gap: 24px;

  max-width: 340px;

  width: 100%;

  backdrop-filter: blur(4px);

}



.header-block-asym789__title {

  color: var(--accent);

  font-size: 2rem;

  font-weight: 800;

  text-align: center;

  margin-bottom: 0;

  line-height: 1.17;

  text-shadow: 0 4px 10px rgba(0,0,0,0.05);

}





.header-block-asym789__image-wrapper {

  width: 100%;

  border-radius: var(--radius);

  overflow: hidden;

  margin: 0;

  box-shadow: 0 6px 22px 0 rgba(0,0,0,0.12);

  background: var(--background);

  position: relative;

}



.header-block-asym789__image-wrapper img {

  display: block;

  width: 100%;

  max-width: 320px;

  height: auto;

  aspect-ratio: 2/3;

  border-radius: var(--radius);

  object-fit: cover;

  filter: brightness(0.98) saturate(1.01);

  transition: filter 0.25s;

}

.header-block-asym789__image-wrapper img:hover {

  filter: brightness(1) saturate(1.05);

}





.header-block-asym789__cta {

  margin-top: 6px;

  padding: 12px 36px;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  text-decoration: none;

  font-weight: 700;

  font-size: 1.14rem;

  transition: var(--transition), box-shadow 0.15s;

  box-shadow: 0 3px 12px rgba(0,0,0,0.10);

  cursor: pointer;

  letter-spacing: 0.06em;

  outline: none;

  backdrop-filter: blur(1px);

  display: inline-block;

}



.header-block-asym789__cta:hover {

  background: var(--primary-hover);

  transform: scale(1.06) translateY(-1px);

  box-shadow: 0 12px 32px rgba(0,0,0,0.15);

}





@media (max-width: 767px) {

  .header-block-asym789__container {

    padding: 11px var(--page-gap-reduced);

  }

  .header-block-asym789__join-btn {

        font-size: 1rem;

        padding: 11px 18px;

        margin-right: 20px;;

  }

  .header-block-asym789__hero {

    padding: var(--section-gap) var(--page-gap-reduced);

    min-height: 380px;

  }

  .header-block-asym789__hero-inner {

    padding: 26px 8px 18px 8px;

    max-width: 98vw;

    gap: 17px;

  }

  .header-block-asym789__title {

    font-size: 1.25rem;

  }

  .header-block-asym789__image-wrapper img {

    max-width: 95vw;

    aspect-ratio: 2/3;

  }

}



body {

  overflow-x: hidden !important;

}

/* FOOTER */
.footer-block-connect847 {

  background: var(--header);

  padding: var(--section-gap);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  overflow-x: hidden;

  max-width: 100%;

}



.footer-connect-content {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: var(--section-gap);

}







.footer-connect-socials {

  display: flex;

  gap: var(--page-gap);

  flex: 0 1 auto;

}



.footer-connect-socials a {

  color: var(--accent);

  font-size: 1.6rem;

  transition: color var(--transition), transform var(--transition), opacity var(--transition);

  opacity: 0.85;

  border-radius: 50%;

  padding: 0.5em;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 2px 6px rgba(0,0,0,0.04);

}



.footer-connect-socials a:hover, 

.footer-connect-socials a:focus {

  color: var(--primary-hover);

  transform: scale(1.12);

  opacity: 1;

}



.footer-connect-copyright {

  margin-top: var(--page-gap);

  text-align: left;

  color: var(--accent);

  font-size: 1rem;

  opacity: 0.85;

}



@media (max-width: 600px) {

  .footer-connect-content {

    flex-direction: column;

    align-items: stretch;

    gap: var(--page-gap);

    text-align: center;

  }

  .footer-connect-logo {

    justify-content: center;

    display: flex;

  }

  .footer-connect-socials {

    justify-content: center;

  }

  .footer-connect-copyright {

    text-align: center;

  }

}

/* BODY */
.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;

  }

}

/* BODY1 */
.content-block-sparkle947 {

  box-sizing: border-box;

  padding: var(--section-gap);

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  margin: var(--section-gap) auto;

  max-width: 1100px;

  overflow-x: hidden;

  transition: var(--transition);

}



.content-wrapper-balance947 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  gap: var(--page-gap);

  max-width: 100%;

  box-sizing: border-box;

}



.content-image--flare947 {

  flex: 0 0 320px;

  max-width: 320px;

  min-width: 0;

  display: flex;

  align-items: center;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: var(--shadow);

  margin-right: 0;

}



.content-image--flare947 img {

  display: block;

  width: 100%;

  height: auto;

  border-radius: var(--radius);

  object-fit: cover;

  background: var(--background);

}



.text-content--spark947 {

  flex: 1 1 0;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.65;

  padding: var(--page-gap) 0;

  transition: var(--transition);

  background: transparent;

}



.text-content--spark947 h2 {

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 0.5em;

  color: var(--primary);

}



.text-content--spark947 h3 {

  font-size: 1.25rem;

  font-weight: 600;

  margin-bottom: 0.8em;

  color: var(--accent);

}



.text-content--spark947 p {

  margin-bottom: 1em;

  color: var(--dark-default);

}



.text-content--spark947 ul, 

.text-content--spark947 ol {

  padding-left: 1.4em;

  margin-bottom: 1em;

  color: var(--dark-muted);

}



.text-content--spark947 li {

  margin-bottom: 0.5em;

  list-style: disc inside;

}



.text-content--spark947 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}



.text-content--spark947 a:hover, 

.text-content--spark947 a:focus {

  color: var(--primary-hover);

}



.text-content--spark947 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  overflow-x: auto;

  display: block;

  font-size: 0.98em;

}



.text-content--spark947 thead {

  background: var(--accent-transparent);

}



.text-content--spark947 th, 

.text-content--spark947 td {

  border: 1px solid var(--accent-secondary);

  padding: 8px 11px;

  text-align: left;

  color: var(--dark);

}



.text-content--spark947 th {

  color: var(--accent);

  font-weight: 600;

}



.text-content--spark947 b,

.text-content--spark947 strong {

  color: var(--primary);

  font-weight: 700;

}



.text-content--spark947 i,

.text-content--spark947 em {

  color: var(--accent);

}



@media (max-width: 1024px) {

  .content-wrapper-balance947 {

    flex-direction: column;

    align-items: stretch;

    gap: var(--page-gap-reduced);

  }

  .content-image--flare947 {

    max-width: 100%;

    margin-bottom: var(--page-gap-reduced);

  }

}





@media (max-width: 768px) {

  .content-block-sparkle947 {

    padding: var(--page-gap-reduced);

    border-radius: var(--radius);

    margin: var(--page-gap) 0;

    max-width: 100%;

  }

  .content-wrapper-balance947 {

    flex-direction: column;

    gap: var(--page-gap-reduced);

  }

  .content-image--flare947 {

    flex: none;

    max-width: 100%;

    min-width: 0;

    margin-bottom: var(--page-gap-reduced);

    box-shadow: var(--shadow);

    border-radius: var(--radius);

  }

  .text-content--spark947 {

    padding: 0.5em 0 0.2em 0;

    font-size: 1.05rem;

  }

}





.content-block-sparkle947,

.content-wrapper-balance947 {

  box-sizing: border-box;

  max-width: 100%;

}

/* BODY2 */
.content-block-art62 {

  box-sizing: border-box;

  width: 100%;

  overflow-x: hidden;

  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 65%, var(--accent-secondary) 100%);

  position: relative;

  padding: var(--section-gap) 0;

}



.content-wrapper-art62 {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: 48px;

  position: relative;

  z-index: 1;

  box-sizing: border-box;

  padding: 0 var(--page-gap);

}



.content-image--flare62 {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  width: 100%;

  aspect-ratio: 16/10;

}



.content-image--flare62 > :not(.image-mask-art62):not(.grain-overlay-art62) {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  object-fit: cover;

  z-index: 0;

  border-radius: 0 0 120px 0 / 0 0 80px 0;

  

}



.image-mask-art62 {

  position: absolute;

  top: 0; left: 0;

  width: 100%; height: 100%;

  pointer-events: none;

  z-index: 2;

  

  clip-path: path('M0,0 H100% V80% Q60% 100% 0,80% Z');

  background: rgba(0,0,0,0.08);

  backdrop-filter: blur(0.5px);

  border-bottom-left-radius: 150px 60px;

}



@supports (clip-path: ellipse(50% 50% at 50% 50%)) {

  .image-mask-art62 {

    clip-path: ellipse(92% 60% at 60% 60%);

    background: rgba(0,0,0,0.03);

  }

}



.grain-overlay-art62 {

  content: '';

  position: absolute;

  top: 0; left: 0;

  width: 100%; height: 100%;

  z-index: 3;

  pointer-events: none;

  opacity: 0.35;

  mix-blend-mode: soft-light;

  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA...'); 

  background-size: 340px 340px;

  background-repeat: repeat;

  border-radius: inherit;

}



.text-content--spark62 {

  text-align: right;

  color: var(--light);

  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 32px;

  align-items: flex-end;

  justify-content: center;

}



.text-content--spark62 .text-content {

  font-family: 'Montserrat', 'Arial', sans-serif;

  font-size: 1.14rem;

  line-height: 1.68;

  letter-spacing: 0.01em;

  max-width: 470px;

  width: 100%;

  word-break: break-word;

  background: var(--accent-transparent);

  box-shadow: var(--shadow);

  padding: 40px 32px 30px 32px;

  border-radius: 0 32px 0 48px;

  backdrop-filter: blur(0.5px);

}



.text-content--spark62 .text-content h2,

.text-content--spark62 .text-content h3 {

  color: var(--light);

  margin-top: 0;

  font-family: 'Montserrat', 'Arial', sans-serif;

  font-weight: 700;

  margin-bottom: 18px;

}



.text-content--spark62 .text-content h3 {

  font-size: 1.28rem;

}



.text-content--spark62 .text-content p {

  margin-bottom: 16px;

  color: var(--light);

  font-size: 1.07rem;

}



.text-content--spark62 .text-content ul,

.text-content--spark62 .text-content ol {

  margin: 12px 0 18px 0;

  padding-left: 1.4em;

  color: var(--accent-secondary);

  font-size: 1rem;

}



.text-content--spark62 .text-content ul li::marker {

  color: var(--primary-hover);

}



.text-content--spark62 .text-content ol li::marker {

  color: var(--accent-secondary);

  font-weight: bold;

}



.text-content--spark62 .text-content li {

  margin-bottom: 6px;

  line-height: 1.6;

}



.text-content--spark62 .text-content a {

  color: var(--accent-secondary);

  text-decoration: underline;

  transition: color var(--transition);

  font-weight: 600;

}



.text-content--spark62 .text-content a:hover, 

.text-content--spark62 .text-content a:focus {

  color: var(--primary-hover);

}



.text-content--spark62 .text-content table {

  width: 100%;

  overflow-x: auto;

  border-collapse: separate;

  border-spacing: 0;

  margin-top: 18px;

  background: rgba(255,255,255,0.04);

  border-radius: 8px;

  box-shadow: var(--shadow);

}



.text-content--spark62 .text-content th,

.text-content--spark62 .text-content td {

  padding: 10px 16px;

  border-bottom: 1px solid var(--accent-secondary);

  color: var(--light);

  text-align: right;

}



.text-content--spark62 .text-content th {

  font-weight: 700;

}



.text-content--spark62 .text-content td:last-child,

.text-content--spark62 .text-content th:last-child {

  

  border-right: none;

}



.cta-button--soft62 {

  background: var(--primary);

  color: var(--light);

  font-weight: 700;

  font-size: 1.08rem;

  border: none;

  border-radius: var(--radius);

  padding: 14px 32px 14px 22px;

  box-shadow: 0 3px 16px -4px var(--accent-secondary), var(--shadow);

  display: inline-flex;

  align-items: center;

  gap: 10px;

  cursor: pointer;

  transition: var(--transition);

  outline: none;

  text-decoration: none;

  margin-top: 18px;

  position: relative;

  will-change: filter, box-shadow, transform;

  overflow: hidden;

}



.cta-button--soft62 .cta-icon-art62 {

  font-size: 1.22em;

  display: flex;

  align-items: center;

}



.cta-button--soft62:hover, .cta-button--soft62:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 6px 36px 0 var(--accent-transparent), 0 2px 8px var(--primary-hover), var(--shadow);

  filter: brightness(1.08) drop-shadow(0 0 14px var(--primary-hover));

  transform: translateY(-2px) scale(1.03);

}



.cta-button--soft62:active {

  transform: scale(0.97) translateY(1px);

  filter: brightness(0.97);

}





@media (max-width: 1024px) {

  .content-wrapper-art62 {

    grid-template-columns: 1fr;

    gap: 32px;

    padding: 0 var(--page-gap-reduced);

  }

  .text-content--spark62 {

    align-items: flex-end;

  }

  .content-image--flare62 {

    aspect-ratio: unset;

    min-height: 240px;

  }

}



@media (max-width: 768px) {

  .content-wrapper-art62 {

    grid-template-columns: 1fr;

    gap: 24px;

    padding: 0 var(--page-gap-reduced);

  }

  .content-image--flare62 {

    order: -1;

    width: 100%;

    min-width: 0;

    aspect-ratio: unset;

    min-height: 190px;

  }

  .image-mask-art62 {

    border-bottom-left-radius: 80px 28px;

  }

  .text-content--spark62 {

    align-items: flex-end;

    padding: 0;

    gap: 22px;

  }

  .text-content--spark62 .text-content {

    font-size: 1.01rem;

    padding: 26px 14px 18px 14px;

    border-radius: 0 18px 0 22px;

    box-shadow: var(--shadow);

    width: 100%;

    min-width: 0;

    max-width: 95vw;

  }

}



@media (max-width: 480px) {

  .text-content--spark62 .text-content, .content-wrapper-art62 {

    padding: 0 2vw;

  }

  .cta-button--soft62 {

    padding: 12px 18px 12px 8px;

    font-size: 0.96rem;

  }

}



body {

  overflow-x: hidden;

}

/* BODY3 */
.content-block-art62 {

  box-sizing: border-box;

  width: 100%;

  overflow-x: hidden;

  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 65%, var(--accent-secondary) 100%);

  position: relative;

  padding: var(--section-gap) 0;

}



.content-wrapper-art62 {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: 48px;

  position: relative;

  z-index: 1;

  box-sizing: border-box;

  padding: 0 var(--page-gap);

}



.content-image--flare62 {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  width: 100%;

  aspect-ratio: 16/10;

}



.content-image--flare62 > :not(.image-mask-art62):not(.grain-overlay-art62) {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  object-fit: cover;

  z-index: 0;

  border-radius: 0 0 120px 0 / 0 0 80px 0;

  

}



.image-mask-art62 {

  position: absolute;

  top: 0; left: 0;

  width: 100%; height: 100%;

  pointer-events: none;

  z-index: 2;

  

  clip-path: path('M0,0 H100% V80% Q60% 100% 0,80% Z');

  background: rgba(0,0,0,0.08);

  backdrop-filter: blur(0.5px);

  border-bottom-left-radius: 150px 60px;

}



@supports (clip-path: ellipse(50% 50% at 50% 50%)) {

  .image-mask-art62 {

    clip-path: ellipse(92% 60% at 60% 60%);

    background: rgba(0,0,0,0.03);

  }

}



.grain-overlay-art62 {

  content: '';

  position: absolute;

  top: 0; left: 0;

  width: 100%; height: 100%;

  z-index: 3;

  pointer-events: none;

  opacity: 0.35;

  mix-blend-mode: soft-light;

  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA...'); 

  background-size: 340px 340px;

  background-repeat: repeat;

  border-radius: inherit;

}



.text-content--spark62 {

  text-align: right;

  color: var(--light);

  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 32px;

  align-items: flex-end;

  justify-content: center;

}



.text-content--spark62 .text-content {

  font-family: 'Montserrat', 'Arial', sans-serif;

  font-size: 1.14rem;

  line-height: 1.68;

  letter-spacing: 0.01em;

  max-width: 470px;

  width: 100%;

  word-break: break-word;

  background: var(--accent-transparent);

  box-shadow: var(--shadow);

  padding: 40px 32px 30px 32px;

  border-radius: 0 32px 0 48px;

  backdrop-filter: blur(0.5px);

}



.text-content--spark62 .text-content h2,

.text-content--spark62 .text-content h3 {

  color: var(--light);

  margin-top: 0;

  font-family: 'Montserrat', 'Arial', sans-serif;

  font-weight: 700;

  margin-bottom: 18px;

}



.text-content--spark62 .text-content h3 {

  font-size: 1.28rem;

}



.text-content--spark62 .text-content p {

  margin-bottom: 16px;

  color: var(--light);

  font-size: 1.07rem;

}



.text-content--spark62 .text-content ul,

.text-content--spark62 .text-content ol {

  margin: 12px 0 18px 0;

  padding-left: 1.4em;

  color: var(--accent-secondary);

  font-size: 1rem;

}



.text-content--spark62 .text-content ul li::marker {

  color: var(--primary-hover);

}



.text-content--spark62 .text-content ol li::marker {

  color: var(--accent-secondary);

  font-weight: bold;

}



.text-content--spark62 .text-content li {

  margin-bottom: 6px;

  line-height: 1.6;

}



.text-content--spark62 .text-content a {

  color: var(--accent-secondary);

  text-decoration: underline;

  transition: color var(--transition);

  font-weight: 600;

}



.text-content--spark62 .text-content a:hover, 

.text-content--spark62 .text-content a:focus {

  color: var(--primary-hover);

}



.text-content--spark62 .text-content table {

  width: 100%;

  overflow-x: auto;

  border-collapse: separate;

  border-spacing: 0;

  margin-top: 18px;

  background: rgba(255,255,255,0.04);

  border-radius: 8px;

  box-shadow: var(--shadow);

}



.text-content--spark62 .text-content th,

.text-content--spark62 .text-content td {

  padding: 10px 16px;

  border-bottom: 1px solid var(--accent-secondary);

  color: var(--light);

  text-align: right;

}



.text-content--spark62 .text-content th {

  font-weight: 700;

}



.text-content--spark62 .text-content td:last-child,

.text-content--spark62 .text-content th:last-child {

  

  border-right: none;

}



.cta-button--soft62 {

  background: var(--primary);

  color: var(--light);

  font-weight: 700;

  font-size: 1.08rem;

  border: none;

  border-radius: var(--radius);

  padding: 14px 32px 14px 22px;

  box-shadow: 0 3px 16px -4px var(--accent-secondary), var(--shadow);

  display: inline-flex;

  align-items: center;

  gap: 10px;

  cursor: pointer;

  transition: var(--transition);

  outline: none;

  text-decoration: none;

  margin-top: 18px;

  position: relative;

  will-change: filter, box-shadow, transform;

  overflow: hidden;

}



.cta-button--soft62 .cta-icon-art62 {

  font-size: 1.22em;

  display: flex;

  align-items: center;

}



.cta-button--soft62:hover, .cta-button--soft62:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 6px 36px 0 var(--accent-transparent), 0 2px 8px var(--primary-hover), var(--shadow);

  filter: brightness(1.08) drop-shadow(0 0 14px var(--primary-hover));

  transform: translateY(-2px) scale(1.03);

}



.cta-button--soft62:active {

  transform: scale(0.97) translateY(1px);

  filter: brightness(0.97);

}





@media (max-width: 1024px) {

  .content-wrapper-art62 {

    grid-template-columns: 1fr;

    gap: 32px;

    padding: 0 var(--page-gap-reduced);

  }

  .text-content--spark62 {

    align-items: flex-end;

  }

  .content-image--flare62 {

    aspect-ratio: unset;

    min-height: 240px;

  }

}



@media (max-width: 768px) {

  .content-wrapper-art62 {

    grid-template-columns: 1fr;

    gap: 24px;

    padding: 0 var(--page-gap-reduced);

  }

  .content-image--flare62 {

    order: -1;

    width: 100%;

    min-width: 0;

    aspect-ratio: unset;

    min-height: 190px;

  }

  .image-mask-art62 {

    border-bottom-left-radius: 80px 28px;

  }

  .text-content--spark62 {

    align-items: flex-end;

    padding: 0;

    gap: 22px;

  }

  .text-content--spark62 .text-content {

    font-size: 1.01rem;

    padding: 26px 14px 18px 14px;

    border-radius: 0 18px 0 22px;

    box-shadow: var(--shadow);

    width: 100%;

    min-width: 0;

    max-width: 95vw;

  }

}



@media (max-width: 480px) {

  .text-content--spark62 .text-content, .content-wrapper-art62 {

    padding: 0 2vw;

  }

  .cta-button--soft62 {

    padding: 12px 18px 12px 8px;

    font-size: 0.96rem;

  }

}



body {

  overflow-x: hidden;

}

/* 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/blogindex2.css */
.auroratiles-zeta501 {

  width: 100%;

  box-sizing: border-box;

  padding-top: 2.2rem;

}



.auroratiles-title-zeta501 {

  font-size: 2.2rem;

  font-weight: 900;

  text-align: center;

  letter-spacing: -0.015em;

  margin: 40px 0 38px 0;

  color: var(--primary);

  position: relative;

}

.auroratiles-title-zeta501::after {

  content: '';

  display: block;

  margin: 1.1em auto 0 auto;

  width: 52px;

  height: 5px;

  background: linear-gradient(93deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  border-radius: 9px;

  opacity: .52;

}



.auroratiles-zeta501 .auroratiles-grid-zeta501 {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 2.5rem 1.9rem;

  max-width: 1200px;

  margin: 0 auto 1.7rem auto;

  width: 100%;

  box-sizing: border-box;

}



.auroratiles-zeta501 .category-card {

  position: relative;

  display: flex;

  flex-direction: column;

  border-radius: 26px 26px 17px 17px;

  background: var(--light);

  box-shadow: 0 12px 40px -8px var(--shadow), 0 1px 9px var(--accent-transparent);

  overflow: visible;

  min-width: 0;

  min-height: 0;

  transition: box-shadow .32s var(--transition), transform .21s var(--transition);

}





.auroratiles-zeta501 .category-card::before {

  content: '';

  position: absolute;

  inset: -4px;

  z-index: 0;

  border-radius: 32px;

  background: linear-gradient(140deg, #A991FC, #6DE0F6 52%, #FFB96B 100%);

  opacity: 0.19;

  filter: blur(1.2px);

  pointer-events: none;

  transition: opacity 0.4s var(--transition);

}

.auroratiles-zeta501 .category-card:hover::before,

.auroratiles-zeta501 .category-card:focus-within::before {

  opacity: 0.42;

}





.auroratiles-zeta501 .category-card:hover,

.auroratiles-zeta501 .category-card:focus-within {

  box-shadow: 0 28px 76px -6px var(--accent-transparent), 0 9px 31px var(--primary-hover);

  transform: translateY(-8px) scale(1.022);

}





.auroratiles-zeta501 .category-card img {

  width: 100%;

  height: 208px;

  object-fit: cover;

  border-radius: 23px 23px 0 0;

  box-shadow: 0 3px 20px 0 var(--accent-transparent);

  filter: grayscale(10%) brightness(0.99) contrast(1.11);

  transition: filter .22s, box-shadow .14s;

  display: block;

}

.auroratiles-zeta501 .category-card:hover img,

.auroratiles-zeta501 .category-card:focus-within img {

  filter: none;

  box-shadow: 0 6px 33px 0 var(--primary-hover);

}





.auroratiles-zeta501 .category-card .category-info {

  position: absolute;

  left: 0; right: 0; bottom: 0;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: flex-end;

  padding: 1.12em 1.44em 1.4em 1.36em;

  background: linear-gradient(0deg, rgba(24,18,77,0.73) 72%, transparent 100%);

  border-radius: 0 0 22px 22px;

  box-sizing: border-box;

  min-height: 114px;

  z-index: 2;

  text-align: left;

  overflow: hidden;

}





.auroratiles-zeta501 .category-card .category-info .category-title {

  color: var(--light);

  font-size: 1.19rem;

  font-weight: 900;

  margin-bottom: 0.5rem;

  letter-spacing: 0.01em;

  position: relative;

}

.auroratiles-zeta501 .category-card .category-info .category-title::after {

  content: "";

  position: absolute;

  left: 0; bottom: -0.33em;

  width: 29px;

  height: 4px;

  border-radius: 3px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.24;

}





.auroratiles-zeta501 .category-card .category-info .category-rating {

  display: inline-block;

  margin-bottom: 0.61em;

  width: 38px; height: 11.5px;

  position: relative;

  overflow: hidden;

}

.auroratiles-zeta501 .category-card .category-info .category-rating::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 100%; height: 3.3px;

  border-radius: 5px;

  background: linear-gradient(90deg, #c1b0fd 0%, #62d0fc 40%, #ffbf88 95%);

  opacity: 0.89;

  

  animation: aurora-shimmer 2.7s linear infinite;

}

@keyframes aurora-shimmer {

  0%   { filter: brightness(1.16); opacity: .87; }

  45%  { filter: brightness(1.47); opacity: 1; }

  100% { filter: brightness(1.13); opacity: .92; }

}





.auroratiles-zeta501 .category-card .category-info .category-btn {

  display: inline-block;

  margin-top: 8px;

  padding: 0.7em 1.2em;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  color: var(--light);

  font-weight: 700;

  font-size: 1.02rem;

  border-radius: 19px;

  box-shadow: 0 2px 12px 0 var(--primary-hover);

  text-decoration: none;

  transition: background .19s, color .16s, box-shadow .17s;

  border: none;

  position: relative;

  z-index: 2;

  cursor: pointer;

}

.auroratiles-zeta501 .category-card .category-info .category-btn:hover,

.auroratiles-zeta501 .category-card .category-info .category-btn:focus {

  background: var(--primary);

  color: var(--light);

  box-shadow: 0 9px 22px 0 var(--accent-transparent);

}





@media (max-width: 870px) {

  .auroratiles-title-zeta501 {

    font-size: 1.17rem;

    margin-bottom: 24px;

  }

  .auroratiles-zeta501 .category-card img {

    height: 205px;

  }

  .auroratiles-zeta501 .category-card .category-info {

    min-height: 52px;

    padding: .85em .8em 1em .8em;

  }

  .auroratiles-zeta501 .category-card .category-info .category-title {

    font-size: 1rem;

    margin-bottom: 0.3em;

  }

  .auroratiles-zeta501 .category-card .category-info .category-rating {

    width: 19px; height: 6px;

  }

  .auroratiles-zeta501 .category-card .category-info .category-rating::before {

    height: 2px; top: 2px;

  }

  .auroratiles-zeta501 .category-card .category-info .category-btn {

    font-size: .91rem;

    padding: .43em .71em;

    border-radius: 13px;

    margin-top: 2px;

  }

}

@media (max-width: 510px) {

  .auroratiles-zeta501 {

    padding-top: .8rem;

  }

  .auroratiles-title-zeta501 {

    font-size: .99rem;

    margin-bottom: 10px;

  }

  .auroratiles-zeta501 .auroratiles-grid-zeta501 {

    gap: .7rem .4rem;

  }

  .auroratiles-zeta501 .category-card {

    border-radius: 12px;

  }

  .auroratiles-zeta501 .category-card img {

    height: 205px;

    border-radius: 7px 7px 0 0;

  }

  .auroratiles-zeta501 .category-card .category-info {

    min-height: 22px;

    padding: .32em .5em .37em .5em;

    border-radius: 0 0 9px 9px;

  }

  .auroratiles-zeta501 .category-card .category-info .category-title {

    font-size: .81rem;

  }

}

/* 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/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .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);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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);
  }
}