/* Custom: 1.css */
@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url(":r:icomoon.woff2") format("woff2");
}
header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: var(--section-gap);
}

body {
 font-family: var(--font-family-main) !important;
 font-weight: var(--font-weight-body) !important;
 font-size: var(--font-size-base) !important;
  background: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.content-container {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-container {
    padding-left: var(--page-gap-reduced);
    padding-right: var(--page-gap-reduced);
  }
    section > div > div,
  section > div > div > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px var(--page-gap-reduced);
  }



  ul, ol {
    padding-left: 16px;
  }
}

.breadcrumbs-section {
  width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
}

.breadcrumbs-list .breadcrumbs-list-item {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

.breadcrumbs-list .breadcrumbs-list-item:last-child {
  color: var(--primary);
}

.breadcrumbs-list .breadcrumbs-list-item a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list .breadcrumbs-list-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-list .breadcrumbs-list-item a::after {
  content: "";
  margin: 0 10px 0 10px;
  border: solid rgba(0, 0, 0, 0.25);
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  padding: 5px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--section-gap);
  margin: var(--page-gap) auto;
  max-width: 1200px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.sidebar-column {
  position: relative;
}
@media (max-width: 768px) {
 .layout-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-row: 1; 
  }

  .main-column {
    grid-row: 2;
  }
}

/* FAQ блок */
details {
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  transition: var(--transition);
  font-family: var(--font-family-main);
}

details[open] {
  background: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  color: var(--light);
  list-style: none;
  outline: none;
  transition: var(--transition);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  background: var(--primary-hover);
}

details[open] summary {
  background: var(--accent-hover);
}

details div {
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  color: var(--light);
  background: var(--accent-transparent);
  line-height: 1.6;
}

/* Color scheme: color3 */
:root {
    --primary: #d4af37;
    --primary-hover: #eec14f;
    --accent: #6e5849;
    --accent-hover: #886b5d;
    --accent-secondary: #a27e71;
    --accent-transparent: rgba(110, 88, 73, 0.3);
    --background: #fff8e1;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
*,

*:before,

*:after {

  box-sizing: border-box;

}



body, html {

  margin: 0;

  padding: 0;

  overflow-x: hidden;

  background: var(--background);

}



.header-block-simple219 {

  width: 100%;

  background: var(--header);

  box-shadow: var(--shadow);

  padding: 0;

}



.header-block-simple219__container {

  display: flex;

  align-items: center;

  height: 76px;

  padding: 0 calc(var(--page-gap) * 1.5);

  min-width: 0;

}



.header-block-simple219__logo-link {

  display: flex;

  align-items: center;

  text-decoration: none;

  user-select: none;

}



.hero-block-simple219 {

  width: 100%;

  padding: 0;

  background: none;

}



.hero-block-simple219__inner {

  display: flex;

  align-items: stretch;

  justify-content: center;

  gap: calc(var(--page-gap) * 2);

  max-width: 1120px;

  margin: 0 auto;

  padding: calc(var(--section-gap) * 1.1) var(--page-gap);

  min-height: 480px;

  box-sizing: border-box;

}



.hero-block-simple219__image-side {

  flex: 0 1 320px;

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

}



.hero-block-simple219__image-wrapper {

  position: relative;

  width: 320px;

  height: 480px;

  border-radius: calc(var(--radius) * 2.8);

  box-shadow: 0 12px 32px 0 rgba(10, 0, 93, 0.13), 0 2px 10px 0 rgba(0,0,0,0.08);

  overflow: hidden;

  display: flex;

  align-items: stretch;

  justify-content: center;

}



.hero-block-simple219__image-wrapper img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center center;

  position: relative;

  z-index: 1;

  border-radius: inherit;

}



.hero-block-simple219__overlay {

  position: absolute;

  inset: 0;

  z-index: 2;

  background: 

    linear-gradient(135deg, var(--accent) 0%, rgba(255,255,255,0.05) 100%);

  opacity: 0.25;

  mix-blend-mode: multiply;

  pointer-events: none;

  border-radius: inherit;

}



.hero-block-simple219__content-side {

  flex: 1 1 0;

  display: flex;

  align-items: center;

  min-width: 0;

  max-width: 540px;

  padding: 0;

  justify-content: flex-start;

}



.hero-block-simple219__content-glass {

  backdrop-filter: blur(12px) saturate(150%);

  background: linear-gradient(120deg, rgba(255,255,255,0.65) 65%, var(--accent-transparent) 100%);

  box-shadow: 0 8px 24px 0 rgba(149,24,48,0.06), var(--shadow);

  border-radius: calc(var(--radius) * 2.5);

  padding: calc(var(--section-gap) * 0.5) calc(var(--page-gap) * 1.5);

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  min-width: 0;

  animation: glass-fade-in 0.88s cubic-bezier(.44,0,.6,1.1);

}



@keyframes glass-fade-in {

  0% { opacity: 0; transform: translateY(32px) scale(0.96);}

  100% { opacity: 1; transform: translateY(0) scale(1);}

}



.hero-block-simple219__title {

  font-size: 2.8rem;

  font-weight: 800;

  line-height: 1.13;

  color: var(--accent);

  letter-spacing: -0.03em;

  margin: 0 0 0.2em 0;

}

header img {



    margin-top: 15px;

}

.hero-block-simple219__desc {

  font-size: 1.15rem;

  line-height: 1.8;

  color: var(--dark-muted);

  margin: 0 0 1rem 0;

  max-width: 390px;

}



.hero-block-simple219__cta {

  display: inline-block;

  font-size: 1.12rem;

  font-weight: 700;

  letter-spacing: 0.03em;

  padding: 0.9em 2.2em;

  margin-top: 0.2em;

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);

  color: var(--light);

  border-radius: calc(var(--radius) * 2);

  text-decoration: none;

  box-shadow: 0 4px 24px 0 rgba(149,24,48,0.18);

  border: none;

  transition: 

    background var(--transition),

    transform 0.32s cubic-bezier(.49,0,.47,1.1),

    box-shadow 0.22s cubic-bezier(.29,.7,.35,1),

    filter 0.18s;

  cursor: pointer;

  will-change: transform;

  user-select: none;

  outline: none;

  position: relative;

}



.hero-block-simple219__cta:active {

  filter: brightness(.99) contrast(1.08);

}



.hero-block-simple219__cta:focus-visible {

  outline: 2px solid var(--primary-hover);

}



.hero-block-simple219__cta:hover {

  background: linear-gradient(100deg, var(--primary-hover) 75%, var(--accent) 100%);

  transform: scale(1.075) translateY(-3px);

  box-shadow: 0 10px 32px 0 var(--accent-transparent), 0 2px 10px 0 var(--shadow);

}



@media (max-width: 1024px) {

  .hero-block-simple219__inner {

    max-width: 100%;

    gap: var(--page-gap);

    padding: calc(var(--section-gap) * 0.9) var(--page-gap);

  }

  .hero-block-simple219__image-wrapper {

    width: 240px;

    height: 360px;

  }

}



@media (max-width: 768px) {

  .header-block-simple219__container {

    height: 60px;

    padding: 0 var(--page-gap);

  }

  .hero-block-simple219__inner {

    flex-direction: column;

    gap: 2.3rem;

    align-items: center;

    min-width: 0;

    padding: calc(var(--section-gap) * 0.5) var(--page-gap);

  }

  .hero-block-simple219__image-side,

  .hero-block-simple219__content-side {

    max-width: 100%;

    width: 100%;

    justify-content: center;

  }

  .hero-block-simple219__image-wrapper {

    width: 90vw;

    max-width: 350px;

    height: 54vw;

    max-height: 380px;

  }

  .hero-block-simple219__content-glass {

    padding: calc(var(--section-gap) * 0.4) var(--page-gap);

    box-shadow: 0 8px 16px 0 var(--shadow);

  }

  .hero-block-simple219__title {

    font-size: 2.1rem;

    text-align: center;

  }

  .hero-block-simple219__desc {

    font-size: 1rem;

    text-align: center;

    max-width: 100%;

    margin: 0 auto 1.1rem auto;

  }

  .hero-block-simple219__cta {

    width: max-content;

    margin-left: auto;

    margin-right: auto;

    font-size: 1.04rem;

    min-width: 0;

  }

}



@media (max-width: 500px) {

  .hero-block-simple219__image-wrapper {

    width: 99vw;

    max-width: 98vw;

    min-width: 0;

    height: 56vw;

    max-height: 54vw;

  }

  .hero-block-simple219__content-glass {

    padding: calc(var(--section-gap) * 0.25) var(--page-gap-reduced);

    border-radius: calc(var(--radius) * 1.5);

  }

  .hero-block-simple219__title {

    font-size: 1.34rem;

    padding-bottom: 0.15em;

  }

}

/* FOOTER */
/* 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 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}





.links-block-niche101-title {

  font-size: 2.2rem;

  font-weight: 700;

  color: var(--accent);

  margin-bottom: 2.2rem;

  letter-spacing: -0.01em;

}



.links-block-niche101-list {

  display: flex;

  flex-wrap: wrap;

  gap: 2rem;

  justify-content: flex-start;

}





.links-block-niche101-list li {

  display: block;

  width: calc((100% - 4rem) / 3);

  min-width: 220px;

  max-width: 340px;

  margin: 0;

  padding: 0;

  list-style: none;

  box-sizing: border-box;

}



.links-block-niche101-list a {

  display: flex;

  align-items: center;

  gap: 1.1em;

  padding: 1.5em 2em;

  background: var(--light);

  color: var(--accent);

  border-radius: var(--radius);

  font-size: 1.14rem;

  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 2px 12px -6px var(--shadow);

  border: 1.5px solid transparent;

  transition: 

    box-shadow var(--transition),

    background var(--transition),

    border-color var(--transition),

    transform var(--transition);

  position: relative;

  overflow: hidden;

}

.links-block-niche101-list a::before {

  content: '';

  display: inline-block;

  width: 1.8em;

  height: 1.8em;

  margin-right: 0.65em;

  background: var(--accent);

  mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 2a8 8 0 018 8v5a2 2 0 01-2 2h-2a2 2 0 01-2-2v-1H8v1a2 2 0 01-2 2H4a2 2 0 01-2-2v-5a8 8 0 018-8zm0 2C6.134 4 3 7.134 3 11v5a.5.5 0 00.5.5H6a.5.5 0 00.5-.5v-2.5A1.5 1.5 0 018 12h4a1.5 1.5 0 011.5 1.5V16a.5.5 0 00.5.5h2.5a.5.5 0 00.5-.5v-5c0-3.866-3.134-7-7-7z"/></svg>') center / contain no-repeat;

}





.links-block-niche101-list a:hover,

.links-block-niche101-list a:focus {

  background: var(--accent-transparent, rgba(74,44,255,0.12));

  color: var(--primary);

  box-shadow: 0 6px 24px -8px var(--shadow);

  border-color: var(--accent);

  transform: translateY(-2px) scale(1.025);

}









@media (max-width: 1023px) {

  .links-block-niche101-list li {

    width: calc((100% - 2rem) / 2);

  }

}





@media (max-width: 768px) {

  .links-block-niche101-list {

    gap: 1.2rem;

  }

  .links-block-niche101-list li {

    width: 100%;

    min-width: 0;

    max-width: 100%;

  }

  .links-block-niche101-list a {

    font-size: 1.07rem;

    padding: 1.2em 1.25em;

  }

}





.links-block-niche101-list,

.links-wrapper {

  overflow-x: hidden;

  box-sizing: border-box;

}

/* BODY */
.content-block-structured83 {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  border: 1px solid var(--accent-transparent, rgba(10,0,93,0.12));

  padding: var(--section-gap);

  overflow-x: hidden;

  margin: var(--section-gap) auto;

  max-width: 840px;

  transition: var(--transition);

  box-sizing: border-box;

  position: relative;

}



.content-wrapper-essence891 {

  max-width: 720px;

  margin: 0 auto;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  gap: calc(var(--section-gap) / 2);

}





.text-content-core629 {

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

  font-family: inherit;

  box-sizing: border-box;

}



.text-content-core629 h2,

.text-content-core629 h3 {

  color: var(--accent);

  margin-top: 0.5em;

  margin-bottom: 0.35em;

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -0.01em;

}



.text-content-core629 h2 {

  font-size: 2rem;

}



.text-content-core629 h3 {

  font-size: 1.35rem;

}



.text-content-core629 p {

  margin: 0.7em 0;

  color: var(--dark-default, #222);

}





.text-content-core629 ul,

.text-content-core629 ol {

  margin: 1em 0 1em 1.2em;

  padding-left: 1.2em;

  color: var(--dark);

  font-size: 1rem;

}



.text-content-core629 ul {

  list-style: disc inside;

}



.text-content-core629 ol {

  list-style: decimal inside;

}



.text-content-core629 li {

  margin-bottom: 0.45em;

}



.text-content-core629 b,

.text-content-core629 strong {

  font-weight: bold;

  color: var(--primary);

}



.text-content-core629 i,

.text-content-core629 em {

  font-style: italic;

  color: var(--accent);

}





.text-content-core629 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 500;

  transition: color 0.22s;

}



.text-content-core629 a:hover,

.text-content-core629 a:focus {

  color: var(--primary);

  text-decoration: underline;

}





.text-content-core629 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1.2em 0;

  overflow-x: auto;

  display: block;

  font-size: 1rem;

  background: var(--background, #f2f3fa);

  border-radius: calc(var(--radius) / 1.5);

  box-shadow: 0 2px 8px rgba(10,0,93,0.06);

}



.text-content-core629 th,

.text-content-core629 td {

  border: 1px solid var(--accent-transparent, #e3e4fa);

  padding: 10px 16px;

  text-align: left;

  box-sizing: border-box;

}



.text-content-core629 th {

  background: var(--accent-secondary, #efeffc);

  color: var(--dark);

  font-weight: 600;

}



.text-content-core629 tr:nth-child(even) td {

  background: rgba(171,161,251,0.11);

}



.text-content-core629 tr:hover td {

  background: var(--accent-transparent, #e9eaf8);

  transition: var(--transition);

}





@media (max-width: 768px) {

  .content-block-structured83 {

    padding: calc(var(--section-gap) / 1.5);

    margin: var(--page-gap-reduced) auto;

    max-width: 98vw;

    border-radius: calc(var(--radius) * 0.85);

  }

  .content-wrapper-essence891 {

    padding: 0;

    gap: var(--page-gap-reduced);

  }

  .text-content-core629 h2 {

    font-size: 1.3rem;

  }

  .text-content-core629 h3 {

    font-size: 1.08rem;

  }

  .text-content-core629 table,

  .text-content-core629 thead,

  .text-content-core629 tbody,

  .text-content-core629 th,

  .text-content-core629 td,

  .text-content-core629 tr {

    display: block;

    width: 100%;

    box-sizing: border-box;

  }

  .text-content-core629 th,

  .text-content-core629 td {

    padding: 9px 8px;

    font-size: 1rem;

    border-radius: 0;

  }

}



@media (max-width: 480px) {

  .content-block-structured83 {

    padding: calc(var(--section-gap) / 2.5);

    box-shadow: none;

    border-width: 1px;

  }

  .text-content-core629 {

    font-size: 0.97rem;

  }

}

/* DEFAULT/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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/blogpreview2.css */
/* ================= MODEL CARD X52 ================= */

.modelcard_x52 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 45px;
  background: #fafaff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.mc52_header {
  position: relative;
  width: 100%;
}

.mc52_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.mc52_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc52_title {
  position: absolute;
  bottom: 12px;
  left: 15px;
  right: 15px;
  background: rgba(0,0,0,0.55);
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* BODY AREA */
.mc52_body {
  padding: 25px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* DESCRIPTION */
.mc52_description {
  background: #f1f2ff;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #2b2b2b;
}

/* SPECS GRID */
.mc52_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
}

.mc52_item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mc52_label {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}

.mc52_val {
  display: block;
  margin-top: 3px;
  font-size: 1.14rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.mc52_btn {
  margin-top: 5px;
  padding: 15px 22px;
  text-align: center;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .2s ease;
}

.mc52_btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .mc52_specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc52_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .mc52_specs {
    grid-template-columns: 1fr;
  }
  .mc52_title {
    font-size: 1.35rem;
    padding: 8px 10px;
  }
  .mc52_body {
    padding: 16px 18px 22px;
  }
  .mc52_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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);
  }
}