/* 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: color20 */
:root {
    --primary: #228b22;
    --primary-hover: #32a532;
    --accent: #ff8c00;
    --accent-hover: #ffa733;
    --accent-secondary: #ffbb66;
    --accent-transparent: rgba(255, 140, 0, 0.3);
    --background: #f5f5dc;
    --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 */
*,

*:before,

*:after {

  box-sizing: border-box;

}



body, html {

  margin: 0;

  padding: 0;

  overflow-x: hidden;

  background: var(--background);

}







.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  padding: 16px var(--page-gap);

  max-width: 1200px;

  margin: 0 auto;

}





.logo-link {

  z-index: 12;

  display: inline-flex;

  align-items: center;

}





.main-nav {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: #2a2a2a;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  padding-top: 80px;

  transform: translateY(-100%);

  transition: transform 0.4s ease;

  z-index: 1000;

  overflow-y: auto;

}



.main-nav.open {

  transform: translateY(0);

}



.menu-list {

  list-style: none;

  padding: 0 20px;

  margin: 0;

  width: 100%;

}



.menu-list li {

  position: relative;

}



.menu-list li a,

.dropbtn {

  display: block;

  padding: 14px 16px;

  color: #fff;

  font-weight: 500;

  text-decoration: none;

  text-transform: uppercase;

  transition: background 0.3s, color 0.3s;

  cursor: pointer;

}



.menu-list li a:hover,

.dropbtn:hover {

  background:  var(--accent, #8f66ff);;

  color: #fff;

}





.dropdown-content {

  display: none;

  flex-direction: column;

  background: #3b3b3b;

  margin-top: 0;

}



.dropdown.open > .dropdown-content {

  display: flex;

}



.dropdown-content a {

  padding-left: 30px;

  font-size: 1rem;

  color: #fff;

}



.dropdown-content a:hover {

  background: #78ae1b;

}





.back-btn {

  display: none;

  width: 100%;

  padding: 12px 20px;

}



.back-btn a {

  color: #fff;

  font-weight: 600;

  display: block;

}



.back-btn a:hover {

  color: #78ae1b;

}





.menu-toggle {

  background: none;

  border: none;

  cursor: pointer;

  z-index: 1100;

}



.burger-lines,

.close-icon {

  width: 24px;

  height: 24px;

  stroke: #fff;

}



.hidden {

  display: none;

}





.lang-switcher {

  position: relative;

  display: inline-block;

  z-index: 1100;

}



.lang-switcher__button {

  background: none;

  border: none;

  cursor: pointer;

  font-weight: 600;

  font-size: 14px;

  padding: 8px 12px;

  border-radius: 6px;

  display: flex;

  align-items: center;

  gap: 6px;

  color: #333;

}



.lang-switcher__list {

  position: absolute;

  top: 100%;

  right: 0;

  display: none;

  flex-direction: column;

  background: #fff;

  border-radius: 6px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  padding: 8px 0;

  min-width: 160px;

  max-height: 300px;

  overflow-y: auto;

  column-count: 2;

  column-gap: 10px;

}



.lang-switcher.open .lang-switcher__list {

  display: flex;

}



.lang-switcher__list li {

  list-style: none;

}



.lang-switcher__list a {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 8px 14px;

  text-decoration: none;

  color: #333;

  transition: background 0.3s;

}



.lang-switcher__list a:hover {

  background: #f0f0f0;

}



.flag {

  width: 20px;

  height: 14px;

  object-fit: cover;

  border-radius: 2px;

}





@media(min-width:1024px){

  .menu-toggle { display: none; }



  .main-nav {

    position: static;

    transform: none;

    flex-direction: row;

    width: auto;

    height: auto;

    background: none;

    padding: 0;

    gap: 30px;

    align-items: center;

    overflow: visible;

  }



  .menu-list {

    flex-direction: row;

    gap: 25px;

    width: auto;

  }



  .menu-list li { display: inline-flex; }



  .menu-list li a,

  .dropbtn {

    padding: 12px 16px;

    color: #333;

  }



  .dropdown-content {

    display: none;

    flex-direction: column;

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 180px;

    background: #fff;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

    border-radius: 6px;

    z-index: 100;

  }



  .dropdown:hover .dropdown-content { display: flex; }



  .dropdown-content a { color: #333; }



  .lang-switcher__button { color:  var(--accent, #8f66ff); }



  

  .lang-switcher__close {

    display: none !important;

  }



  

  .lang-switcher__list {

    position: absolute;

    top: 100%;

    right: 0;

    width: auto;

    max-height: 300px;

    background: #fff;

    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    column-count: 2;

    overflow-y: auto;

    z-index: 100;

  }

}





@media(max-width:1023px){

  .header-inner {

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    flex-wrap: nowrap;

  }



  .main-nav {

    z-index: 1000;

    padding-top: 80px;

  }



  .lang-switcher {

    position: relative;

    z-index: 2000;

    display: inline-block;

  }



  .lang-switcher__button {

    color:  var(--accent, #8f66ff);

    z-index: 2200;

  }



  

 .lang-switcher__list {

    position: fixed;

    top: -20px; 

    left: 0;

    width: 100%;

    height: 100vh;

    max-height: none; 

    background: rgba(42,42,42,0.95);

    display: none;

    flex-direction: column;

    padding-top: 80px;

    column-count: 2;

    column-gap: 10px;

    overflow-y: auto;

    z-index: 2100;

  }



  .lang-switcher.open .lang-switcher__list {

    display: flex;

  }



  .lang-switcher__list a {

    color: #fff;

    padding: 16px 20px;

    width: 100%;

  }



  .lang-switcher__list a:hover {

    background: #78ae1b;

  }



  

  .lang-switcher__close {

    position: fixed;

    top: 20px;

    right: 20px;

    font-size: 2rem;

    color: #fff;

    cursor: pointer;

    display: none;

    z-index: 2200;

  }



  .lang-switcher.open .lang-switcher__close {

    display: block;

  }

}







@media (max-width: 480px) {

  .hero-title {font-size: 1.45rem;}

  .btn-signup, .hero-cta {font-size: 1rem;}

  .menu-toggle {margin-right: 6px; width: 48px;}

}







.main-nav.open {display: flex;}







.hero-block-simple219 {

  width: 100%;

  padding: 0;

  background: none;

}



.hero-block-simple219__inner {

  display: flex;

  align-items: stretch;

  justify-content: center;

  gap: calc(var(--page-gap) * 2);

  max-width: 1120px;

  margin: 0 auto;

  padding: calc(var(--section-gap) * 1.1) var(--page-gap);

  min-height: 480px;

  box-sizing: border-box;

}



.hero-block-simple219__image-side {

  flex: 0 1 320px;

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

}



.hero-block-simple219__image-wrapper {

  position: relative;

  width: 320px;

  height: 480px;

  border-radius: calc(var(--radius) * 2.8);

  box-shadow: 0 12px 32px 0 rgba(10, 0, 93, 0.13), 0 2px 10px 0 rgba(0,0,0,0.08);

  overflow: hidden;

  display: flex;

  align-items: stretch;

  justify-content: center;

}



.hero-block-simple219__image-wrapper img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center center;

  position: relative;

  z-index: 1;

  border-radius: inherit;

}



.hero-block-simple219__overlay {

  position: absolute;

  inset: 0;

  z-index: 2;

  background: 

    linear-gradient(135deg, var(--accent) 0%, rgba(255,255,255,0.05) 100%);

  opacity: 0.25;

  mix-blend-mode: multiply;

  pointer-events: none;

  border-radius: inherit;

}



.hero-block-simple219__content-side {

  flex: 1 1 0;

  display: flex;

  align-items: center;

  min-width: 0;

  max-width: 540px;

  padding: 0;

  justify-content: flex-start;

}



.hero-block-simple219__content-glass {

  backdrop-filter: blur(12px) saturate(150%);

  background: linear-gradient(120deg, rgba(255,255,255,0.65) 65%, var(--accent-transparent) 100%);

  box-shadow: 0 8px 24px 0 rgba(149,24,48,0.06), var(--shadow);

  border-radius: calc(var(--radius) * 2.5);

  padding: calc(var(--section-gap) * 0.5) calc(var(--page-gap) * 1.5);

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  min-width: 0;

  animation: glass-fade-in 0.88s cubic-bezier(.44,0,.6,1.1);

}



@keyframes glass-fade-in {

  0% { opacity: 0; transform: translateY(32px) scale(0.96);}

  100% { opacity: 1; transform: translateY(0) scale(1);}

}



.hero-block-simple219__title {

  font-size: 2.8rem;

  font-weight: 800;

  line-height: 1.13;

  color: var(--accent);

  letter-spacing: -0.03em;

  margin: 0 0 0.2em 0;

}

header img {



    margin-top: 15px;

}

.hero-block-simple219__desc {

  font-size: 1.15rem;

  line-height: 1.8;

  color: var(--dark-muted);

  margin: 0 0 1rem 0;

  max-width: 390px;

}



.hero-block-simple219__cta {

  display: inline-block;

  font-size: 1.12rem;

  font-weight: 700;

  letter-spacing: 0.03em;

  padding: 0.9em 2.2em;

  margin-top: 0.2em;

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);

  color: var(--light);

  border-radius: calc(var(--radius) * 2);

  text-decoration: none;

  box-shadow: 0 4px 24px 0 rgba(149,24,48,0.18);

  border: none;

  transition: 

    background var(--transition),

    transform 0.32s cubic-bezier(.49,0,.47,1.1),

    box-shadow 0.22s cubic-bezier(.29,.7,.35,1),

    filter 0.18s;

  cursor: pointer;

  will-change: transform;

  user-select: none;

  outline: none;

  position: relative;

}



.hero-block-simple219__cta:active {

  filter: brightness(.99) contrast(1.08);

}



.hero-block-simple219__cta:focus-visible {

  outline: 2px solid var(--primary-hover);

}



.hero-block-simple219__cta:hover {

  background: linear-gradient(100deg, var(--primary-hover) 75%, var(--accent) 100%);

  transform: scale(1.075) translateY(-3px);

  box-shadow: 0 10px 32px 0 var(--accent-transparent), 0 2px 10px 0 var(--shadow);

}



@media (max-width: 1024px) {

  .hero-block-simple219__inner {

    max-width: 100%;

    gap: var(--page-gap);

    padding: calc(var(--section-gap) * 0.9) var(--page-gap);

  }

  .hero-block-simple219__image-wrapper {

    width: 240px;

    height: 360px;

  }

}



@media (max-width: 768px) {

  .header-block-simple219__container {

    height: 60px;

    padding: 0 var(--page-gap);

  }

  .hero-block-simple219__inner {

    flex-direction: column;

    gap: 2.3rem;

    align-items: center;

    min-width: 0;

    padding: calc(var(--section-gap) * 0.5) var(--page-gap);

  }

  .hero-block-simple219__image-side,

  .hero-block-simple219__content-side {

    max-width: 100%;

    width: 100%;

    justify-content: center;

  }

  .hero-block-simple219__image-wrapper {

    width: 90vw;

    max-width: 350px;

    height: 54vw;

    max-height: 380px;

  }

  .hero-block-simple219__content-glass {

    padding: calc(var(--section-gap) * 0.4) var(--page-gap);

    box-shadow: 0 8px 16px 0 var(--shadow);

  }

  .hero-block-simple219__title {

    font-size: 2.1rem;

    text-align: center;

  }

  .hero-block-simple219__desc {

    font-size: 1rem;

    text-align: center;

    max-width: 100%;

    margin: 0 auto 1.1rem auto;

  }

  .hero-block-simple219__cta {

    width: max-content;

    margin-left: auto;

    margin-right: auto;

    font-size: 1.04rem;

    min-width: 0;

  }

}



@media (max-width: 500px) {

  .hero-block-simple219__image-wrapper {

    width: 99vw;

    max-width: 98vw;

    min-width: 0;

    height: 56vw;

    max-height: 54vw;

  }

  .hero-block-simple219__content-glass {

    padding: calc(var(--section-gap) * 0.25) var(--page-gap-reduced);

    border-radius: calc(var(--radius) * 1.5);

  }

  .hero-block-simple219__title {

    font-size: 1.34rem;

    padding-bottom: 0.15em;

  }

}

/* 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-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%;

}

/* BODY1 */
.content-block-match48 {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  background: var(--light);

  padding: var(--section-gap) 0;

}



.content-wrapper-blend99 {

  max-width: 1180px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  gap: var(--page-gap);

  box-sizing: border-box;

  padding: 0 var(--page-gap);

}



.content-image-flare12 {

  flex: 0 0 320px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--accent-transparent);

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: var(--shadow);

  min-width: 0;

  max-width: 100%;

}

.content-image-flare12 img {

  display: block;

  width: 100%;

  max-width: 320px;

  height: auto;

  border-radius: var(--radius);

  object-fit: cover;

}



.text-content-spark57 {

  flex: 1 1 0;

  min-width: 0;

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  z-index: 2;

}



.text-content-spark57 .text-content {

  color: var(--dark-default);

  font-size: 1.15rem;

  line-height: 1.6;

  font-weight: 400;

}



.text-content-spark57 .text-content h2,

.text-content-spark57 .text-content h3 {

  color: var(--accent);

  margin-top: 0;

  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 0.5em;

}



.text-content-spark57 .text-content p {

  margin: 0 0 1em 0;

}



.text-content-spark57 .text-content ul,

.text-content-spark57 .text-content ol {

  margin: 1em 0 1.5em 1.5em;

  padding: 0;

}



.text-content-spark57 .text-content ul li {

  position: relative;

  margin-bottom: 0.5em;

  padding-left: 1.2em;

  color: var(--dark);

}





.text-content-spark57 .text-content ol li {

  margin-left: 1.2em;

  margin-bottom: 0.5em;

  color: var(--dark);

}



.text-content-spark57 .text-content a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.18s;

  font-weight: 500;

}

.text-content-spark57 .text-content a:hover,

.text-content-spark57 .text-content a:focus {

  color: var(--accent-hover);

}



.text-content-spark57 .text-content table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--light);

  overflow-x: auto;

  display: block;

}

.text-content-spark57 .text-content thead {

  background: var(--accent-transparent);

}

.text-content-spark57 .text-content th,

.text-content-spark57 .text-content td {

  border: 1px solid var(--accent);

  padding: 0.5em 0.8em;

  text-align: left;

  color: var(--dark);

}

.text-content-spark57 .text-content th {

  font-weight: 700;

  background: var(--accent-secondary);

  color: var(--accent);

}



.cta-button-soft35 {

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  padding: 14px 36px;

  font-size: 1.1rem;

  font-weight: 600;

  text-align: center;

  cursor: pointer;

  text-decoration: none;

  box-shadow: var(--shadow);

  transition: var(--transition), box-shadow 0.15s;

  margin-top: 0.8em;

  letter-spacing: 0.01em;

  position: relative;

  z-index: 1;

  outline: none;

}

.cta-button-soft35:focus-visible {

  outline: 2px solid var(--accent-hover);

  outline-offset: 2px;

}

.cta-button-soft35:hover {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.03);

  box-shadow: 0 6px 24px rgba(0,0,0,0.10);

}



@media (max-width: 1024px) {

  .content-wrapper-blend99 {

    gap: var(--page-gap-reduced);

  }

  .content-image-flare12 {

    max-width: 240px;

    flex-basis: 240px;

  }

}

@media (max-width: 768px) {

  .content-wrapper-blend99 {

    flex-direction: column;

    align-items: stretch;

    gap: var(--page-gap-reduced);

    padding: 0 var(--page-gap-reduced);

  }

  .content-image-flare12,

  .content-image-flare12 img {

    width: 100%;

    max-width: 100%;

    min-width: 0;

    border-radius: var(--radius);

  }

  .content-image-flare12 {

    margin-bottom: var(--page-gap-reduced);

    flex-basis: auto;

    box-shadow: var(--shadow);

  }

  .text-content-spark57 {

    gap: var(--page-gap-reduced);

    padding: 0;

  }

  .cta-button-soft35 {

    width: 100%;

    box-sizing: border-box;

    padding: 14px 0;

    font-size: 1.05rem;

  }

}

@media (max-width: 480px) {

  .content-block-match48 {

    padding: var(--page-gap-reduced) 0;

  }

  .content-wrapper-blend99 {

    padding: 0 8px;

  }

  .text-content-spark57 .text-content {

    font-size: 1rem;

  }

}





html, body, .content-block-match48 {

  max-width: 100vw;

  overflow-x: hidden;

  box-sizing: border-box;

}

/* BODY2 */
.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;

  }

}

/* BODY3 */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* dating-tips/blogpreview.css */
.bloghero-eclipse712 {

  width: 100%;

  max-width: 1100px;

  margin: 0 auto var(--section-gap);

  position: relative;

  border-radius: 2.3em;

  padding: 3.7rem 1.7rem 3.1rem 1.7rem;

  background: linear-gradient(120deg, var(--background) 0%, var(--light) 85%);

  box-shadow: 0 8px 32px var(--shadow);

  overflow: hidden;

  text-align: center;

  z-index: 1;

}





.bloghero-eclipse712 .bloghero-decor-eclipse712 {

  position: absolute;

  top: -68px;

  right: -58px;

  z-index: 0;

  opacity: 0.42;

  animation: bloghero-glow712 10s ease-in-out infinite alternate;

  transform: scale(1.08) rotate(-6deg);

  filter: blur(2.7px) saturate(1.27);

  pointer-events: none;

  transition: opacity .25s;

}

.bloghero-eclipse712::before {

  

  content: '';

  display: block;

  position: absolute;

  left: 30%; top: 7%;

  width: 115px; height: 115px;

  border-radius: 50%;

  background: radial-gradient(circle at 60% 50%, var(--accent-secondary, #91BFFF) 0%, var(--accent) 46%, transparent 90%);

  opacity: 0.13;

  filter: blur(8px);

  z-index: 0;

  pointer-events: none;

}



@keyframes bloghero-glow712 {

  from { transform: scale(1.06) rotate(-11deg) translateY(0);}

  to {   transform: scale(1.17) rotate(-2deg) translateY(26px);}

}





.bloghero-info-eclipse712 {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

}





.bloghero-title-eclipse712 {

  font-size: var(--font-size-h1);

  font-weight: 900;

  line-height: 1.14;

  letter-spacing: -0.022em;

  color: var(--primary);

  padding: 0.31em 0.1em;

  margin: 0;

  background: linear-gradient(90deg, var(--primary) 25%, var(--accent) 80%);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  text-shadow:

    0 6px 44px var(--accent-transparent),

    0 2.5px 9px #0001;

  box-decoration-break: clone;

  animation: eclipseFadeUp712 1.13s cubic-bezier(.29,1.12,.22,1) both;

  border-radius: 1em;

  position: relative;

  isolation: isolate;

}

.bloghero-title-eclipse712::after {

  

  content: '';

  display: block;

  height: 4.5px;

  width: 84px;

  margin: 1em auto 0 auto;

  background: linear-gradient(90deg, var(--primary) 12%, var(--accent-secondary, #ABA1FB) 95%);

  border-radius: 7px;

  opacity: 0.43;

}



@keyframes eclipseFadeUp712 {

  from { opacity: 0; transform: translateY(42px) scale(.98);}

  to {   opacity: 1; transform: none;}

}





@media (max-width: 700px) {

  .bloghero-eclipse712 {

    max-width: 99vw;

    padding: 2.1rem 0.35rem 2.1rem 0.35rem;

    border-radius: 1.1em;

  }

  .bloghero-title-eclipse712 {

    font-size: var(--font-size-h2);

    padding: 0.19em 0.04em;

  }

  .bloghero-title-eclipse712::after {

    width: 41px;

    height: 2.2px;

    margin: .61em auto 0 auto;

    border-radius: 4px;

  }

  .bloghero-eclipse712 .bloghero-decor-eclipse712 { top: -67px; right: -37px; }

  .bloghero-eclipse712::before { left: 39%; top: 8%; width: 50vw; height: 41vw; }

}

@media (max-width: 420px) {

  .bloghero-title-eclipse712 { font-size: var(--font-size-h3); }

  .bloghero-eclipse712 { padding: 1.29rem 0.1rem; }

  .bloghero-title-eclipse712::after { width: 25vw; margin: .34em auto 0 auto; }

  .bloghero-eclipse712 .bloghero-decor-eclipse712 { top: -44px; right: -24px; }

}

/* dating-tips/blogindex.css */
.category-grid-alpha .category-card {

  position: relative;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  border-radius: var(--radius-xl);

  box-shadow: 0 4px 12px var(--shadow);

  background: var(--light);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.category-grid-alpha .category-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 8px 20px var(--shadow);

}





.category-grid-alpha .category-card img {

  width: 100%;

  height: 240px;

  object-fit: cover;

  display: block;

}





.category-grid-alpha .category-info {

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  align-items: center;

  padding: 1rem;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);

  box-sizing: border-box;

  text-align: center;

}





.category-grid-alpha .category-title {

  color: var(--light);

  font-size: 1.1rem;

  font-weight: 700;

  margin-bottom: 0.5rem;

  z-index: 2;

}

.categories-grid-alpha77 .page-title {

  font-size: 2rem; 

  font-weight: 700;

  color: var(--primary);

  text-align: center;

  margin: 40px 0 30px 0; 

  position: relative;

  z-index: 2;

}



.categories-grid-alpha77 .category-grid-alpha {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: var(--page-gap);

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  box-sizing: border-box;

}





.category-grid-alpha .category-rating::before {

  content: "★";

  color: var(--accent);

  font-size: 1.2rem;

  display: inline-block;

  margin-bottom: 0.75rem;

  transition: transform 0.3s ease;

}



.category-grid-alpha .category-card:hover .category-rating::before {

  transform: scale(1.2) rotate(10deg);

}





.category-grid-alpha .category-btn {

  display: block;

  width: 100%;

  padding: 0.75rem 1rem;

  background: var(--accent);

  color: var(--light);

  font-weight: 600;

  text-align: center;

  text-decoration: none;

  border-radius: 0 0 var(--radius-xl) var(--radius-xl);

  transition: background 0.3s ease;

}



.category-grid-alpha .category-btn:hover {

  background: var(--primary);

}

/* dating-tips/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;

  }

}

/* dating-tips/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;}

}

/* dating-tips/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* dating-tips/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* dating-tips/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);
  }
}