/* 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: color9 */
:root {
    --primary: #0d47a1;
    --primary-hover: #285eb3;
    --accent: #1976d2;
    --accent-hover: #3387d8;
    --accent-secondary: #4d99de;
    --accent-transparent: rgba(25, 118, 210, 0.3);
    --background: #e3f2fd;
    --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-block-match231, 

.hero-block-match231 {

  box-sizing: border-box;

}



body, html {

  overflow-x: hidden;

}



.header-block-match231 {

  position: relative;

  z-index: 5;

  background: var(--header);

  box-shadow: var(--shadow);

}



.header-block-match231__container {

  display: flex;

  justify-content: center;

  align-items: center;

  padding: calc(var(--page-gap) + 8px) var(--page-gap);

}



.header-block-match231__logo img {

  display: block;



  object-fit: contain;

  transition: transform .3s var(--transition), filter .2s linear;

  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.05));

}

.header-block-match231__logo:hover img,

.header-block-match231__logo:focus img {

  transform: scale(1.03) rotate(-2deg);

  filter: drop-shadow(0 4px 20px var(--primary-hover));

}



.hero-block-match231 {

  position: relative;

  width: 100%;

  min-height: 52vw;

  min-height: min(600px, 95vh);

  display: grid;

  place-items: center;

  padding: 0;

  overflow: hidden;

  background: transparent;

}



.hero-block-match231__image-bg {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  z-index: 1;

  overflow: hidden;

  pointer-events: none;

  user-select: none;

}



.hero-block-match231__image-bg img {

  display: block;

  width: 100vw;

  height: 100%;

  object-fit: cover;

  object-position: 50% 60%;

  filter: brightness(0.78) saturate(1.08) blur(0px);

  transition: filter .4s;

  will-change: filter;

}



.hero-block-match231__overlay {

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:

    linear-gradient(101deg, var(--accent-transparent) 0%, rgba(0,0,0,0.48) 90%),

    linear-gradient(0deg, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.10) 80%);

  backdrop-filter: blur(6px) saturate(1.3);

  transition: backdrop-filter .4s, background .22s;

  mix-blend-mode: multiply;

}



.hero-block-match231__content {

  position: relative;

  z-index: 3;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  min-height: 41vh;

  gap: clamp(18px, 6vw, 42px);

  padding: calc(var(--section-gap) + 16px) var(--page-gap) calc(var(--section-gap) * 0.7) var(--page-gap);

  text-align: center;

}



.hero-block-match231__title {

  font-size: clamp(2.15rem, 5vw, 3.8rem);

  font-weight: 700;

  color: var(--light);

  max-width: min(700px, 85vw);

  margin: 0 0 0.65em 0;

  letter-spacing: -2px;

  line-height: 1.11;

  text-shadow: 0 4px 24px rgba(0,0,0,0.23), 0 1px 0 var(--accent-transparent);

  animation: heroBlockMatch231FadeInUp .7s .15s both cubic-bezier(.77,0,.18,1);

}



@keyframes heroBlockMatch231FadeInUp {

  from { opacity: 0; transform: translateY(40px);}

  to   { opacity: 1; transform: translateY(0);}

}



.hero-block-match231__cta {

  display: inline-block;

  font-size: 1.17rem;

  font-weight: 600;

  letter-spacing: 0.03em;

  color: var(--light);

  background: linear-gradient(101deg, var(--primary) 40%, var(--primary-hover) 100%);

  padding: 14px 48px 14px 36px;

  border-radius: calc(var(--radius) * 2.4);

  box-shadow: 0 6px 26px -7px var(--primary-hover), 0 2px 8px 0 var(--accent-transparent);

  margin: 0;

  outline: none;

  border: none;

  cursor: pointer;

  min-width: max-content;

  transition:

    background .2s var(--transition),

    box-shadow .2s var(--transition),

    transform .26s cubic-bezier(.47,1.64,.41,.8),

    color .19s var(--transition);

  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.11));

  text-decoration: none;

  position: relative;

  overflow: hidden;

}

.hero-block-match231__cta::after {

  content: '';

  position: absolute;

  top: 50%; left: 50%;

  width: 130%; height: 230%;

  pointer-events: none;

  border-radius: 100%;

  background: radial-gradient(circle,rgba(255,255,255,0.12) 0,transparent 75%);

  transform: translate(-50%,-50%) scale(0.6);

  opacity: 0;

  transition: opacity 0.25s cubic-bezier(.85,.3,.1,1), transform 0.32s;

}

.hero-block-match231__cta:hover,

.hero-block-match231__cta:focus {

  background: linear-gradient(91deg, var(--primary-hover) 33%, var(--accent) 100%);

  color: var(--accent-secondary);

  box-shadow: 0 8px 36px -3px var(--primary-hover), 0 3px 12px 0 var(--accent-transparent);

  transform: scale(1.055);

}

.hero-block-match231__cta:hover::after,

.hero-block-match231__cta:focus::after {

  opacity: 1;

  transform: translate(-50%,-50%) scale(1);

}

.hero-block-match231__cta:active {

  background: var(--primary-hover);

  transform: scale(0.985);

  color: var(--light);

}



@media (max-width: 1200px) {

  .hero-block-match231__title { font-size: clamp(1.7rem, 4vw, 2.5rem);}

}



@media (max-width: 900px) {

  .hero-block-match231 {

    min-height: 450px;

  }

  .header-block-match231__container {

    padding: calc(var(--page-gap-reduced) + 7px) var(--page-gap);

  }

}

@media (max-width: 660px) {

  .hero-block-match231 {

    min-height: 340px;

  }

  .hero-block-match231__content {

    gap: 1.5rem;

    padding: calc(var(--page-gap-reduced) + 9vw) var(--page-gap-reduced) var(--section-gap) var(--page-gap-reduced);

  }

  .hero-block-match231__title {

    font-size: 1.25rem;

    max-width: 95vw;

    letter-spacing: -1px;

  }

  .hero-block-match231__cta {

    padding: 12px 28px 12px 22px;

    font-size: 1rem;

    border-radius: calc(var(--radius) * 1.7);

    min-width: 0;

    max-width: 97vw;

    text-overflow: ellipsis;

    white-space: nowrap;

  }



}

@media (max-width: 450px) {

  .hero-block-match231 {

    min-height: 230px;

  }

  .hero-block-match231__cta {

    font-size: .98rem;

    padding: 11px 18px 11px 13px;

  }

}





.header-block-match231, .hero-block-match231,

.header-block-match231 *, .hero-block-match231 * {

  box-sizing: border-box;

}

/* FOOTER */
/* overlay */


.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
.site-popup-overlay.visible {
  display: flex !important;
  opacity: 1 !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
/* scrolling zone */
.site-popup-content{
  padding: 24px;
  overflow-y: auto;   
  overflow-x: hidden; 
}

/* close button */
.site-popup-close{
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  z-index: 10; 
}


@media (max-width: 600px) {
  .site-popup-panel{
    max-width: 100%;
    border-radius: 10px;
  }
  .site-popup-content{
    padding: 18px;
  }
}



.footer-block-elite937 {
  background: var(--header);
  text-align: center;
  box-shadow: var(--shadow);
  padding: var(--section-gap, 32px) 0;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-elite937-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-block-elite937 img { display: block; margin: 0 auto; }


.footer-links-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-popup-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.18s;
}

.footer-popup-btn:hover { color: var(--light); background: var(--accent); }

.footer-elite937-copyright {
  color: var(--dark);
  margin-top: var(--page-gap);
  opacity: 0;
  animation: elite937-fade-in 1s ease 0.2s forwards;
  font-size: 1rem;
  transition: opacity 0.3s var(--transition);
}

@keyframes elite937-fade-in { to { opacity: 1; } }

@media (max-width: 600px) {
  .footer-block-elite937 { padding: var(--page-gap) 0; }
  .footer-elite937-inner { padding: 0 var(--page-gap-reduced); }
  .footer-elite937-copyright { font-size: 0.95rem; }
}

.links-wrapper.links-block-popular21 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}



.links-block-popular21-title {

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 2rem;

  color: var(--dark);

  letter-spacing: -0.01em;

}



.links-block-popular21-list {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-wrap: wrap;

  gap: 20px 18px;

  justify-content: flex-start;

  

  max-width: 100%;

}





.links-block-popular21-list li {

  margin: 0;

  padding: 0;

}



.links-block-popular21-list a {

  display: inline-block;

  padding: 10px 26px;

  border-radius: var(--radius);

  background: var(--primary);

  color: var(--light);

  font-size: 1.05rem;

  font-weight: 500;

  text-decoration: none;

  box-shadow: 0 2px 18px 0 var(--shadow,rgba(0,0,0,0.09));

  transition: 

    background 0.22s var(--transition,cubic-bezier(0.4,0,0.2,1)), 

    box-shadow 0.22s var(--transition),

    transform 0.15s var(--transition);

  min-width: 110px;

  max-width: max-content;

  white-space: nowrap;

  vertical-align: middle;

  

  

}



.links-block-popular21-list a:hover,

.links-block-popular21-list a:focus {

  background: var(--accent);

  color: var(--light);

  box-shadow: 0 6px 24px 0 var(--shadow,rgba(0,0,0,0.16));

  transform: translateY(-3px) scale(1.04);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .links-wrapper.links-block-popular21 {

    padding: 32px 12px;

  }

  .links-block-popular21-title {

    font-size: 1.4rem;

    margin-bottom: 1.1rem;

  }

}



@media (max-width: 768px) {

  .links-block-popular21-list {

    flex-wrap: wrap;

    gap: 16px 12px;

    justify-content: flex-start;

  }

  .links-block-popular21-list a {

    display: block;

    width: 100%;

    min-width: unset;

    max-width: 100%;

    padding: 12px 7px;

    text-align: left;

    font-size: 1rem;

  }

}

/* BODY */
.content-block-heroTop90 {

  width: 100%;

  box-sizing: border-box;

  background: var(--light);

  padding: var(--section-gap);

  display: flex;

  justify-content: center;

  align-items: stretch;

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  overflow-x: hidden;

}

.content-wrapper-glossy990 {

  max-width: 920px;

  width: 100%;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: calc(var(--section-gap) * 0.8);

  align-items: center;

}





.content-image--flare198 {

  width: 100%;

  border-radius: var(--radius) var(--radius) 0 0;

  overflow: hidden;

  box-shadow: 0 2px 16px rgba(10, 0, 93, 0.10);

  backdrop-filter: blur(0.5px);

  margin-bottom: var(--page-gap-reduced);

}

.content-image--flare198 img {

  display: block;

  width: 100%;

  height: auto;

  object-fit: cover;

  border-radius: var(--radius) var(--radius) 0 0;

}





.cta-row-soft520 {

  width: 100%;

  display: flex;

  justify-content: center;

  margin-bottom: var(--page-gap-reduced);

}

.cta-button--soft194 {

  background: var(--primary);

  color: var(--light);

  padding: 14px 32px;

  border-radius: var(--radius);

  font-size: 1.08rem;

  font-weight: 600;

  display: inline-block;

  box-shadow: 0 2px 10px rgba(149, 24, 48, 0.16);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.18s cubic-bezier(0.23,0.82,0.47,0.96);

  cursor: pointer;

  outline: none;

  border: none;

  min-width: max-content;

  letter-spacing: 0.02em;

  position: relative;

}

.cta-button--soft194:hover, .cta-button--soft194:focus {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.02);

  box-shadow: 0 8px 24px rgba(149,24,48,0.17);

}

.cta-button--soft194:active {

  transform: scale(0.98);

}





.text-content--spark761 {

  width: 100%;

  color: var(--dark);

  font-size: 1.1rem;

  line-height: 1.6;

  display: block;

  padding: 0 var(--page-gap);

  box-sizing: border-box;

}





.text-content--spark761 h2,

.text-content--spark761 h3 {

  font-weight: 700;

  color: var(--accent);

  margin-top: 0.65em;

  margin-bottom: 0.2em;

  letter-spacing: 0.01em;

  line-height: 1.2;

}



.text-content--spark761 h2 {

  font-size: 2rem;

}

.text-content--spark761 h3 {

  font-size: 1.35rem;

}





.text-content--spark761 p {

  margin: 0.65em 0 0.85em;

  color: var(--dark-default);

}



.text-content--spark761 ul,

.text-content--spark761 ol {

  padding-left: 1.4em;

  margin: 0.25em 0 1em;

}

.text-content--spark761 ul {

  list-style: disc inside;

}

.text-content--spark761 ol {

  list-style: decimal inside;

}

.text-content--spark761 li {

  margin: 0.3em 0;

  color: var(--dark);

}





.text-content--spark761 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.18s cubic-bezier(0.39,0,0.17,0.99);

  word-break: break-word;

}

.text-content--spark761 a:hover,

.text-content--spark761 a:focus {

  color: var(--accent);

}





.text-content--spark761 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  margin: var(--page-gap-reduced) 0;

  font-size: 1rem;

  background: var(--accent-transparent);

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content--spark761 thead {

  background: var(--accent-secondary);

}

.text-content--spark761 th,

.text-content--spark761 td {

  border: 1px solid var(--accent);

  padding: 0.55em 1em;

  text-align: left;

  color: var(--dark);

}

.text-content--spark761 th {

  font-weight: 600;

  color: var(--dark);

}





.text-content--spark761 td ul,

.text-content--spark761 td ol {

  margin: 0.15em 0;

  padding-left: 1.3em;

}





.text-content--spark761 b, 

.text-content--spark761 strong {

  font-weight: 700;

  color: var(--accent);

}

.text-content--spark761 i, 

.text-content--spark761 em {

  font-style: italic;

}





@media (max-width: 1024px) {

  .content-wrapper-glossy990 {

    max-width: 98vw;

    padding: 0;

  }

  .text-content--spark761 {

    font-size: 1rem;

    padding-left: var(--page-gap-reduced);

    padding-right: var(--page-gap-reduced);

  }

}

@media (max-width: 768px) {

  .content-block-heroTop90 {

    padding: var(--page-gap);

    border-radius: var(--radius);

  }

  .content-wrapper-glossy990 {

    max-width: 100vw;

    padding: 0;

    gap: var(--page-gap);

  }

  .content-image--flare198 {

    margin-bottom: var(--page-gap);

    border-radius: var(--radius);

  }

  .text-content--spark761 {

    padding: 0 var(--page-gap-reduced);

    font-size: 0.98rem;

  }

}

@media (max-width: 480px) {

  .content-block-heroTop90 {

    padding: var(--page-gap-reduced);

    border-radius: var(--radius);

  }

  .content-wrapper-glossy990 {

    gap: var(--page-gap-reduced);

  }

  .cta-row-soft520 {

    margin-bottom: var(--page-gap-reduced);

  }

  .cta-button--soft194 {

    padding: 12px 18px;

    font-size: 1rem;

  }

  .text-content--spark761 {

    padding: 0 4vw;

    font-size: 0.97rem;

  }

  .content-image--flare198 {

    border-radius: var(--radius);

  }

}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview4.css */
/* ============ PROFILECARD Z84 ============ */

.profilecard_z84 {
  max-width: 950px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fefefe;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.11);
  border: 1px solid #e6e6e6;
}

/* HEADER */

.z84_head {
  position: relative;
  width: 100%;
}

.z84_imgbox {
  width: 100%;
  aspect-ratio: 4.4/3;
  background: #222;
  overflow: hidden;
}

.z84_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z84_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* INNER */

.z84_inner {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.z84_text {
  background: #f3f6ff;
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.6;
  font-size: 1.03rem;
  border-left: 5px solid #2f6bff;
  color: #313131;
}

/* SPECS GRID */

.z84_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 26px;
}

.z84_block {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.05);
}

.z84_key {
  font-size: 0.83rem;
  color: #2f6bff;
  font-weight: 700;
}

.z84_val {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.z84_btn {
  padding: 16px 24px;
  text-align: center;
  background: linear-gradient(90deg,#2f6bff,#7a3bff);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  text-decoration: none;
  transition: .25s;
}

.z84_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .z84_specs {
    grid-template-columns: repeat(2,1fr);
  }

  .z84_title {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .z84_specs {
    grid-template-columns: 1fr;
  }

  .z84_title {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .z84_inner {
    padding: 20px 22px 26px;
  }

  .z84_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}