.mdh-cams-wrapper {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 20px 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.mdh-cams-wrapper *,
.mdh-cams-wrapper *::before,
.mdh-cams-wrapper *::after {
box-sizing: border-box;
} .mdh-grid {
--mdh-columns: 3;
--mdh-columns-mobile: 2;
--mdh-primary: #e91e63;
--mdh-gap: 20px;
display: grid;
grid-template-columns: repeat(var(--mdh-columns), 1fr);
gap: var(--mdh-gap);
} .mdh-grid.mdh-loading {
display: flex;
justify-content: center;
align-items: center;
min-height: 300px;
}
.mdh-loader {
text-align: center;
}
.mdh-spinner {
width: 50px;
height: 50px;
border: 4px solid #f3f3f3;
border-top: 4px solid var(--mdh-primary);
border-radius: 50%;
animation: mdh-spin 1s linear infinite;
margin: 0 auto 15px;
}
@keyframes mdh-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.mdh-loader p {
margin: 0;
color: #666;
font-size: 14px;
} .mdh-model-card {
background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
border-radius: 16px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
}
.mdh-model-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
} .mdh-model-image {
position: relative;
width: 100%;
aspect-ratio: 1 / 1;
overflow: hidden;
}
.mdh-model-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.mdh-model-card:hover .mdh-model-image img {
transform: scale(1.08);
} .mdh-status-badge {
position: absolute;
top: 12px;
left: 12px;
padding: 6px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
display: flex;
align-items: center;
gap: 6px;
z-index: 2;
}
.mdh-status-badge.mdh-live {
background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
color: #fff;
animation: mdh-pulse 2s infinite;
}
.mdh-status-badge.mdh-offline {
background: rgba(0, 0, 0, 0.6);
color: #aaa;
}
.mdh-status-badge::before {
content: '';
width: 8px;
height: 8px;
border-radius: 50%;
background: currentColor;
}
.mdh-status-badge.mdh-live::before {
background: #fff;
animation: mdh-blink 1s infinite;
}
@keyframes mdh-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(255, 8, 68, 0.4); }
50% { box-shadow: 0 0 0 8px rgba(255, 8, 68, 0); }
}
@keyframes mdh-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
} .mdh-model-image::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 60%;
background: linear-gradient(to top, rgba(26, 26, 46, 1) 0%, rgba(26, 26, 46, 0) 100%);
pointer-events: none;
} .mdh-model-info {
padding: 20px;
position: relative;
margin-top: -40px;
z-index: 1;
}
.mdh-model-name {
font-size: 20px;
font-weight: 700;
color: #fff;
margin: 0 0 10px 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} .mdh-model-country {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 16px;
}
.mdh-flag {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(255, 255, 255, 0.1);
padding: 4px 10px;
border-radius: 4px;
font-size: 12px;
color: #ccc;
}
.mdh-flag-icon {
width: 20px;
height: 14px;
border-radius: 2px;
object-fit: cover;
} .mdh-cta-button {
display: block;
width: 100%;
padding: 14px 20px;
background: linear-gradient(135deg, var(--mdh-primary) 0%, #ff6090 100%);
color: #fff !important;
text-decoration: none !important;
text-align: center;
font-size: 15px;
font-weight: 700;
border-radius: 10px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}
.mdh-cta-button:hover {
transform: scale(1.02);
box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
background: linear-gradient(135deg, #ff6090 0%, var(--mdh-primary) 100%);
color: #fff !important;
}
.mdh-cta-button:active {
transform: scale(0.98);
} .mdh-error {
text-align: center;
padding: 40px 20px;
background: #fff5f5;
border: 1px solid #fed7d7;
border-radius: 8px;
color: #c53030;
} .mdh-no-results {
grid-column: 1 / -1;
text-align: center;
padding: 60px 20px;
color: #666;
} @media screen and (max-width: 992px) {
.mdh-grid {
grid-template-columns: repeat(2, 1fr);
--mdh-gap: 16px;
}
.mdh-model-name {
font-size: 18px;
}
.mdh-model-info {
padding: 16px;
}
} @media screen and (max-width: 600px) {
.mdh-grid {
grid-template-columns: repeat(var(--mdh-columns-mobile), 1fr);
--mdh-gap: 12px;
}
.mdh-model-card {
border-radius: 12px;
}
.mdh-model-name {
font-size: 15px;
margin-bottom: 8px;
}
.mdh-model-info {
padding: 14px;
margin-top: -30px;
}
.mdh-status-badge {
top: 8px;
left: 8px;
padding: 4px 10px;
font-size: 10px;
}
.mdh-flag {
padding: 3px 8px;
font-size: 11px;
}
.mdh-flag-icon {
width: 16px;
height: 12px;
}
.mdh-cta-button {
padding: 12px 16px;
font-size: 13px;
border-radius: 8px;
}
} @media screen and (max-width: 400px) {
.mdh-cams-wrapper {
padding: 10px 0;
}
.mdh-grid {
--mdh-gap: 10px;
}
.mdh-model-info {
padding: 12px;
}
.mdh-model-country {
flex-wrap: wrap;
gap: 4px;
}
} @media (prefers-color-scheme: dark) {
.mdh-error {
background: #2d1f1f;
border-color: #5a2d2d;
color: #fc8181;
}
}.vx-plug2025-container {
max-width: 100%;
margin: 0 auto;
padding: 20px 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.vx-plug2025-title {
text-align: center;
font-size: 28px;
font-weight: 700;
margin: 0 0 30px 0;
color: #333;
} .vx-plug2025-grid {
display: grid;
gap: 20px;
width: 100%;
}
.vx-plug2025-grid.vx-columns-2 {
grid-template-columns: repeat(2, 1fr);
}
.vx-plug2025-grid.vx-columns-3 {
grid-template-columns: repeat(3, 1fr);
}
.vx-plug2025-grid.vx-columns-4 {
grid-template-columns: repeat(4, 1fr);
}
.vx-plug2025-grid.vx-columns-5 {
grid-template-columns: repeat(5, 1fr);
}
.vx-plug2025-grid.vx-columns-6 {
grid-template-columns: repeat(6, 1fr);
} .vx-plug2025-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vx-plug2025-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.vx-plug2025-link {
display: block;
text-decoration: none;
color: inherit;
}
.vx-plug2025-link:hover,
.vx-plug2025-link:focus {
text-decoration: none;
color: inherit;
} .vx-plug2025-image-wrapper {
position: relative;
width: 100%;
padding-top: 133%; overflow: hidden;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.vx-plug2025-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.vx-plug2025-card:hover .vx-plug2025-image {
transform: scale(1.05);
}
.vx-plug2025-placeholder {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, 0.7);
}
.vx-plug2025-placeholder .dashicons {
font-size: 48px;
width: 48px;
height: 48px;
} .vx-plug2025-online-badge {
position: absolute;
top: 10px;
left: 10px;
background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
color: #fff;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.5px;
padding: 4px 10px;
border-radius: 20px;
text-transform: uppercase;
box-shadow: 0 2px 8px rgba(0, 200, 83, 0.4);
animation: vx-pulse 2s infinite;
}
@keyframes vx-pulse {
0%, 100% {
box-shadow: 0 2px 8px rgba(0, 200, 83, 0.4);
}
50% {
box-shadow: 0 2px 15px rgba(0, 200, 83, 0.7);
}
} .vx-plug2025-info {
padding: 15px;
text-align: center;
}
.vx-plug2025-name {
font-size: 16px;
font-weight: 600;
margin: 0 0 5px 0;
color: #333;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.vx-plug2025-age {
display: inline-block;
font-size: 13px;
color: #e91e63;
font-weight: 500;
margin-bottom: 8px;
}
.vx-plug2025-description {
font-size: 12px;
color: #666;
margin: 0;
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
} .vx-plug2025-error {
background: #ffebee;
border-left: 4px solid #f44336;
padding: 15px 20px;
color: #c62828;
border-radius: 0 8px 8px 0;
margin: 20px 0;
}
.vx-plug2025-empty {
text-align: center;
padding: 40px 20px;
background: #f5f5f5;
border-radius: 8px;
color: #666;
font-size: 16px;
} .vx-plug2025-loading {
text-align: center;
padding: 40px 20px;
}
.vx-plug2025-spinner {
width: 40px;
height: 40px;
border: 3px solid #f3f3f3;
border-top: 3px solid #e91e63;
border-radius: 50%;
animation: vx-spin 1s linear infinite;
margin: 0 auto 15px;
}
@keyframes vx-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} @media (max-width: 1200px) {
.vx-plug2025-grid.vx-columns-6 {
grid-template-columns: repeat(5, 1fr);
}
.vx-plug2025-grid.vx-columns-5 {
grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 992px) {
.vx-plug2025-grid.vx-columns-6,
.vx-plug2025-grid.vx-columns-5,
.vx-plug2025-grid.vx-columns-4 {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.vx-plug2025-grid.vx-columns-6,
.vx-plug2025-grid.vx-columns-5,
.vx-plug2025-grid.vx-columns-4,
.vx-plug2025-grid.vx-columns-3 {
grid-template-columns: repeat(2, 1fr);
}
.vx-plug2025-title {
font-size: 24px;
}
.vx-plug2025-card {
border-radius: 8px;
}
.vx-plug2025-info {
padding: 12px;
}
.vx-plug2025-name {
font-size: 14px;
}
.vx-plug2025-age {
font-size: 12px;
}
}
@media (max-width: 480px) {
.vx-plug2025-grid {
gap: 12px;
}
.vx-plug2025-online-badge {
font-size: 9px;
padding: 3px 8px;
}
.vx-plug2025-info {
padding: 10px;
}
.vx-plug2025-name {
font-size: 13px;
}
.vx-plug2025-description {
display: none;
}
} @media (prefers-color-scheme: dark) {
.vx-plug2025-card {
background: #2d2d2d;
}
.vx-plug2025-name {
color: #f5f5f5;
}
.vx-plug2025-description {
color: #aaa;
}
.vx-plug2025-title {
color: #f5f5f5;
}
} .single-col .vx-plug2025-container,
.row .vx-plug2025-container {
padding-left: 0;
padding-right: 0;
} [data-ux-type] .vx-plug2025-grid {
margin-left: 0;
margin-right: 0;
} .vx-plug2025-card::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #e91e63, #9c27b0);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.vx-plug2025-card:hover::after {
transform: scaleX(1);
} .vx-plug2025-link,
.vx-plug2025-link:hover,
.vx-plug2025-link:focus,
.vx-plug2025-link:active,
.vx-plug2025-link:visited {
text-decoration: none !important;
color: inherit !important;
outline: none !important;
box-shadow: none !important;
}
.vx-plug2025-card {
position: relative;
}a {
text-decoration-thickness: 1px !important;
text-underline-offset: .1em;
} :where(.wp-site-blocks *:focus) {
outline-width: 2px;
outline-style: solid;
} .wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
margin-bottom: 3px;
} .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
outline-offset: 4px;
} .wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
outline-offset: 0;
} h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
text-wrap: pretty;
} .more-link {
display: block;
}@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"); *,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
} body {
background: linear-gradient(to bottom, #0d0d13 0%, #7f073a 40%, #000 100%);
color: #e0e0e0;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
min-height: 100vh;
} a {
color: #ff2d55;
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: #ff589d;
} h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
color: #ffffff;
} header,
footer {
background: #111111;
} main {
max-width: 1600px;
margin: 0 auto;
padding: 2rem 1rem 4rem;
} .wp-block-button__link {
background: linear-gradient(135deg, #ff2d55 0%, #bf5af2 100%);
color: #ffffff !important;
border: none;
border-radius: 50px;
padding: 12px 24px;
font-weight: 600;
transition: all 0.2s ease;
display: inline-block;
}
.wp-block-button__link:hover {
background: linear-gradient(135deg, #ff589d 0%, #d084ff 100%);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 45, 85, 0.3);
}  @media (max-width: 900px) {
.entry-content.wp-block-post-content.has-global-padding.is-layout-constrained,
.entry-content .has-global-padding,
.wp-block-post-content.is-layout-constrained {
padding-left: 0 !important;
padding-right: 0 !important;
}
} .lsc-modern {
--bg-dark: #0a0a0f;
--bg-card: rgba(20, 20, 30, 0.7);
--glass: rgba(255, 255, 255, 0.04);
--glass-border: rgba(255, 255, 255, 0.1);
--text-primary: #ffffff;
--text-secondary: #a8b2d1;
--text-muted: #6b7789;
--accent-pink: #ff2d55;
--accent-purple: #bf5af2;
--accent-blue: #0a84ff;
--gradient-1: linear-gradient(135deg, #ff2d55 0%, #bf5af2 100%);
--gradient-2: linear-gradient(135deg, #bf5af2 0%, #0a84ff 100%);
--gradient-3: linear-gradient(135deg, #0a84ff 0%, #5ac8fa 100%);
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
--shadow-glow: 0 0 32px rgba(191, 90, 242, 0.3);
background: var(--bg-dark);
color: var(--text-primary);
position: relative;
overflow: hidden;
padding: 1rem 1rem;
margin: 0;
width: 100%;
} .lsc-modern::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: 
radial-gradient(circle at 20% 50%, rgba(191, 90, 242, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255, 45, 85, 0.1) 0%, transparent 50%),
radial-gradient(circle at 40% 20%, rgba(10, 132, 255, 0.08) 0%, transparent 50%);
animation: lsc-modern-float 30s ease-in-out infinite;
pointer-events: none;
z-index: 0;
}
@keyframes lsc-modern-float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
33%      { transform: translate(30px, -30px) rotate(120deg); }
66%      { transform: translate(-20px, 20px) rotate(240deg); }
} .lsc-modern .lsc-container {
position: relative;
z-index: 1;
max-width: 1200px;
margin: 0 auto;
} .lsc-modern .lsc-hero {
text-align: center;
margin-bottom: 2rem;
}
.lsc-modern .lsc-hero-tag {
display: inline-block;
padding: .35rem .7rem;
font-size: .85rem;
border-radius: 999px;
border: 1px solid rgba(255,255,255,.15);
background: rgba(255,255,255,.06);
backdrop-filter: blur(6px);
margin-bottom: .6rem;
}
.lsc-modern .lsc-hero-title {
font-size: clamp(1.8rem, 3.6vw, 2.4rem);
font-weight: 800;
line-height: 1.15;
margin: .25rem 0 .5rem;
background: linear-gradient(90deg,#ff3e8a,#ff80b5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.lsc-modern .lsc-hero-subtitle {
color: #cfcfd7;
max-width: 820px;
margin: 0 auto;
font-size: 1rem;
}
.lsc-modern .lsc-hero-features {
display: flex;
gap: .5rem;
justify-content: center;
flex-wrap: wrap;
margin-top: .9rem;
}
.lsc-modern .lsc-feature-pill {
font-size: .9rem;
padding: .4rem .7rem;
border-radius: 999px;
border: 1px solid rgba(255,255,255,.15);
background: rgba(255,255,255,.06);
} .lsc-modern .lsc-grid {
display: grid;
gap: 1.4rem;
grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
} .lsc-modern .lsc-card {
background: linear-gradient(180deg,#1a1a1a 0%,#0d0d0d 100%);
border: 1px solid rgba(255,255,255,.08);
border-radius: 18px;
box-shadow: 0 6px 25px rgba(0,0,0,.45);
display: flex;
flex-direction: column;
transition: transform .25s ease, box-shadow .25s ease;
}
.lsc-modern .lsc-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 35px rgba(255,62,138,.25);
} .lsc-modern .lsc-card-header { padding: 1.1rem 1.3rem .6rem; }
.lsc-modern .lsc-card-logo {
display: inline-flex;
align-items: center;
gap: .6rem;
padding: .4rem .7rem;
border-radius: 10px;
line-height: 1;
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.12);
font-weight: 700;
font-size: .98rem;
}
.lsc-modern .lsc-card-title {
font-size: 1.15rem;
margin: .55rem 0 .5rem;
color: #fff;
} @media (max-width: 600px) {
.lsc-modern {
padding: 1.4rem .8rem;
}
.lsc-modern .lsc-hero-title {
font-size: 1.65rem;
}
} .lsc-faq {
max-width: 800px;
margin: 3rem auto;
padding: 0 1.5rem;
color: #f2f2f2;
font-family: "Inter", sans-serif;
}
.lsc-faq h2 {
text-align: center;
font-size: clamp(1.6rem, 4vw, 2rem);
margin-bottom: 2rem;
font-weight: 700;
}
.faq-item {
border-radius: 12px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.08);
margin-bottom: 1rem;
padding: 1rem 1.2rem;
transition: all 0.3s ease;
cursor: pointer;
}
.faq-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.15);
}
.faq-item h3 {
font-size: 1.05rem;
font-weight: 600;
margin: 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-item h3::after {
content: "+";
font-weight: bold;
font-size: 1.2rem;
transition: transform 0.3s ease;
}
.faq-item.open h3::after {
transform: rotate(45deg);
}
.faq-item p {
font-size: 0.95rem;
line-height: 1.6;
margin: 0;
margin-top: 0.8rem;
display: none;
color: rgba(255,255,255,0.85);
}
.faq-item.open p {
display: block;
}
@media (max-width: 600px) {
.lsc-faq {
padding: 0 1rem;
}
.faq-item {
padding: 0.9rem 1rem;
}
}  .lscx-theme {
--lscx-bg-1:#0b0b12;
--lscx-bg-2:#0e0e16;
--lscx-bg-3:#090910;
--lscx-text:#eef0f5;
--lscx-text-dim:#cfd3dc;
--lscx-surface:rgba(255,255,255,.06);
--lscx-surface-2:rgba(255,255,255,.09);
--lscx-border:rgba(255,255,255,.16);
--lscx-accent:#ff4d88;
--lscx-accent-2:#00e1d6;
--lscx-radius:22px;
--lscx-chip-blur:8px;
--lscx-container:1200px;
} .lscx-theme,
.lscx-theme * {
box-sizing: border-box;
} .lscx-container {
max-width: var(--lscx-container);
margin-inline: auto;
padding-inline: 1rem;
} .lscx-hero .lscx-container {
max-width: 1600px;
} .lscx-hero {
position: relative;
color: var(--lscx-text);
margin: 0 auto;
padding: 0;
background: transparent !important;
border: none !important;
box-shadow: none !important;
}
.lscx-hero::before,
.lscx-hero::after {
content: none !important;
} .lscx-panel {
position: relative;
overflow: hidden;
margin: 0 auto;
border-radius: var(--lscx-radius);
border: 1px solid rgba(255,255,255,.08);
background:
radial-gradient(1200px 420px at 50% -10%, rgba(255,255,255,.06), transparent 60%),
linear-gradient(145deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%),
#0b0e12;
box-shadow: 0 10px 30px rgba(0,0,0,.45);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.lscx-panel::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background:
radial-gradient(80% 80% at 50% -10%, rgba(0,0,0,.35), transparent 60%),
repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,.003) 3px 3.5px),
repeating-linear-gradient(90deg, transparent 0 2px, rgba(255,255,255,.003) 3px 3.5px);
} .lscx-pad-xl {
padding: clamp(1.6rem, 4vw, 3rem);
}
.lscx-pad-lg {
padding: clamp(1.4rem, 3vw, 2rem);
} .lscx-hero__head {
text-align: center;
}
.lscx-hero__title {
font-size: clamp(1.9rem, 5vw, 3rem);
line-height: 1.15;
font-weight: 800;
margin: .7rem auto .35rem;
letter-spacing: .2px;
}
.lscx-hero__title::after {
content: "";
display: block;
width: 76px;
height: 3px;
margin: .7rem auto 0;
border-radius: 999px;
background: linear-gradient(90deg, transparent, var(--lscx-accent), var(--lscx-accent-2), transparent);
opacity: .85;
}
.lscx-hero__sub {
max-width: 760px;
margin: .4rem auto 0;
color: var(--lscx-text-dim);
font-size: clamp(.98rem, 1.6vw, 1.05rem);
} .lscx-chip {
display: inline-flex;
align-items: center;
gap: .45rem;
padding: .44rem .8rem;
border-radius: 999px;
border: 1px solid var(--lscx-border);
background: var(--lscx-surface);
backdrop-filter: blur(var(--lscx-chip-blur));
-webkit-backdrop-filter: blur(var(--lscx-chip-blur));
font-size: .9rem;
color: var(--lscx-text);
}
.lscx-hero__quick {
margin-top: 1.05rem;
display: flex;
flex-wrap: wrap;
gap: .6rem;
justify-content: center;
}
.lscx-pill {
position: relative;
display: inline-flex;
align-items: center;
gap: .45rem;
padding: .6rem .9rem;
border-radius: 12px;
color: var(--lscx-text);
text-decoration: none;
background: var(--lscx-surface);
border: 1px solid var(--lscx-border);
transition:
transform .12s ease,
background .25s ease,
border-color .25s ease,
box-shadow .25s ease;
}
.lscx-pill:hover {
background: var(--lscx-surface-2);
border-color: color-mix(in oklab, var(--lscx-accent) 40%, white 0%);
box-shadow: 0 6px 22px rgba(255,77,136,.15), 0 2px 8px rgba(0,0,0,.6);
transform: translateY(-1px);
}
.lscx-pill::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: radial-gradient(circle at 50% 50%, var(--lscx-accent) 0%, var(--lscx-accent-2) 100%);
}
.lscx-hero__meta {
margin-top: 1.4rem;
display: flex;
flex-wrap: wrap;
gap: .5rem;
justify-content: center;
}
.lscx-badge {
padding: .4rem .8rem;
border-radius: 999px;
background: rgba(0,0,0,.35);
border: 1px solid rgba(255,255,255,.18);
font-size: .8rem;
color: var(--lscx-text-dim);
} @media (prefers-reduced-motion: reduce) {
.lscx-pill,
.lscx-hero__title::after {
transition: none;
}
} .lscx-section {
padding: 2rem 1rem;
color: var(--lscx-text);
font-family: inherit;
line-height: 1.6;
}
.lscx-center {
text-align: center;
}
.lscx-section--surface {
background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.12);
border-radius: 16px;
}
.lscx-h2 {
font-size: clamp(1.3rem, 3.5vw, 1.6rem);
font-weight: 700;
margin: 2rem 0 .75rem;
}
.lscx-h3 {
font-size: clamp(1.1rem, 2.6vw, 1.4rem);
margin: 0 0 .6rem;
font-weight: 700;
}
.lscx-text {
color: var(--lscx-text-dim);
}
.lscx-text--muted {
color: var(--lscx-text-dim);
}
.lscx-section__head {
max-width: 720px;
margin: 0 auto 1.75rem;
text-align: center;
} .lscx-grid {
display: grid !important;
grid-template-columns: 1fr;
gap: 1rem;
column-count: initial !important;
column-gap: normal !important;
-moz-column-count: initial !important;
-webkit-column-count: initial !important;
float: none !important;
} .lscx-hero__inner {
width: 100%;
}
.lscx-grid--2 {
grid-template-columns: 1fr;
}
@media (min-width: 900px) {
.lscx-grid--2 {
grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
gap: 1.5rem;
}
} @media (min-width: 700px) {
.lscx-grid.lscx-grid--3 {
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
}
.lscx-grid--cards {
align-items: stretch;
} .lscx-card {
padding: 1.25rem;
border-radius: 14px;
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.14);
transition: transform .12s ease, background .2s ease, border-color .2s ease;
height: 100%;
display: flex;
flex-direction: column;
}
.lscx-card:hover {
transform: translateY(-2px);
background: rgba(255,255,255,.08);
border-color: #ffffff37;
}
.lscx-card__title {
margin: 0 0 .5rem;
font-size: 1.05rem;
font-weight: 700;
}
.lscx-card .lscx-text {
margin-bottom: .75rem;
}
.lscx-card ul {
margin: 0 0 .9rem 1.2rem;
} .lscx-card .lscx-btn {
margin-top: auto;
width: max-content;
}
.lscx-card--category {
padding-top: 1.1rem;
} .lscx-card--guide {
position: relative;
padding-top: 2.2rem;
}
.lscx-step {
position: absolute;
top: 1rem;
left: 1rem;
width: 28px;
height: 28px;
border-radius: 999px;
font-size: .9rem;
font-weight: 700;
display: inline-flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--lscx-accent), var(--lscx-accent-2));
color: #fff;
box-shadow: 0 6px 16px rgba(0,0,0,.5);
} .lscx-btn {
display: inline-block;
padding: .6rem .9rem;
border-radius: 12px;
color: var(--lscx-text);
text-decoration: none;
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.18);
transition:
transform .12s ease,
background .2s ease,
border-color .2s ease,
box-shadow .2s ease;
}
.lscx-btn:hover {
background: rgba(255,255,255,.1);
border-color: rgba(255,255,255,.3);
transform: translateY(-1px);
}
.lscx-btn--full {
width: 100%;
text-align: center;
} .lscx-card__tagrow {
display: flex;
flex-wrap: wrap;
gap: .4rem;
margin-bottom: .65rem;
}
.lscx-tag {
padding: .3rem .6rem;
border-radius: 999px;
border: 1px solid rgba(255,255,255,.16);
font-size: .78rem;
color: var(--lscx-text-dim);
background: rgba(0,0,0,.3);
}
.lscx-tag--soft {
background: rgba(255,255,255,.06);
border-color: rgba(255,255,255,.12);
} .lscx-list {
list-style: disc;
padding-left: 1.25rem;
margin: .2rem 0 .9rem;
} .lscx-hero__aside {
align-self: stretch;
display: flex;
flex-direction: column;
gap: 1rem;
}
.lscx-panel--glass {
background:
radial-gradient(600px 340px at 0% 0%, rgba(0,225,214,.18), transparent 60%),
rgba(8,10,16,.96);
} .lscx-faq {
max-width: 800px;
margin: 3rem auto;
}
.lscx-faq__item {
margin: .6rem 0;
padding: .9rem 1rem;
border-radius: 12px;
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.14);
cursor: pointer;
}
.lscx-faq__q {
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
margin: 0;
}
.lscx-faq__q::after {
content: "+";
font-weight: 700;
}
.lscx-faq__item.open .lscx-faq__q::after {
content: "–";
}
.lscx-faq__a {
display: none;
margin-top: .6rem;
color: var(--lscx-text-dim);
}
.lscx-faq__item.open .lscx-faq__a {
display: block;
} @media (max-width: 768px) {
.lscx-hero__inner {
gap: 1rem;
}
.lscx-hero__aside {
margin-top: 1rem;
}
} .lsc-modern .lsc-grid > p {
display: contents;
margin: 0 !important;
padding: 0 !important;
} .lsc-modern .lsc-card {
background: linear-gradient(180deg,#151515 0%,#050505 100%);
border-radius: 18px;
border: 1px solid rgba(255,255,255,.08);
box-shadow: 0 10px 28px rgba(0,0,0,.55);
overflow: hidden;
display: flex;
flex-direction: column;
} .lsc-modern .lsc-card-logo-img {
height: 32px;
width: auto;
display: block;
} .lsc-modern .lsc-card-screenshot {
position: relative;
overflow: hidden;
}
.lsc-modern .lsc-card-screenshot img {
width: 100%;
display: block;
max-height: 230px; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,.06);
} .lsc-modern .lsc-card-body {
padding: 1rem 1.3rem 1rem;
} .lsc-modern .lsc-info-list {
list-style: none;
margin: 0 0 .9rem;
padding: 0;
}
.lsc-modern .lsc-info-list li {
position: relative;
padding-left: 1.1rem;
margin-bottom: .35rem;
font-size: .95rem;
color: #f2f2f7;
line-height: 1.5;
}
.lsc-modern .lsc-info-list li::before {
content: "•";
position: absolute;
left: 0;
top: 0;
color: #ff2d55;
font-size: 1.1rem;
line-height: 1;
} .lsc-modern .lsc-card-footer {
margin-top: auto; padding: .85rem 1.2rem 1rem;
border-top: 1px solid rgba(255,255,255,.08);
display: flex;
align-items: center;
justify-content: space-between;
gap: .75rem;
}
.lsc-modern .lsc-mini-logo {
height: 26px;
width: auto;
display: block;
filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}
.lsc-modern .lsc-card-footer-right {
display: flex;
flex-wrap: wrap;
gap: .5rem;
justify-content: flex-end;
} .lsc-modern .lsc-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: .3rem;
padding: .5rem .9rem;
border-radius: 999px;
font-size: .9rem;
font-weight: 600;
text-decoration: none;
cursor: pointer;
border: 1px solid transparent;
transition:
background .18s ease,
border-color .18s ease,
transform .12s ease,
box-shadow .18s ease;
} .lsc-modern .lsc-btn-primary {
background: linear-gradient(135deg,#ff2d55 0%,#bf5af2 100%);
color: #ffffff;
border-color: rgba(255,255,255,.2);
box-shadow: 0 6px 18px rgba(255,45,85,.35);
}
.lsc-modern .lsc-btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 10px 28px rgba(255,45,85,.45);
} .lsc-modern .lsc-btn-secondary {
background: transparent;
color: #f5f5ff;
border-color: rgba(255,255,255,.35);
}
.lsc-modern .lsc-btn-secondary:hover {
background: rgba(255,255,255,.1);
} .lsc-modern .lsc-card-tags {
display: flex;
flex-wrap: wrap;
gap: .35rem;
margin-bottom: .4rem;
}
.lsc-modern .lsc-tag {
font-size: .8rem;
padding: .25rem .55rem;
border-radius: 999px;
background: rgba(0,0,0,.45);
border: 1px solid rgba(255,255,255,.18);
color: #d7d7e4;
} .lsc-modern .lsc-card-tip {
font-size: .9rem;
margin-top: .2rem;
color: #ffcce0;
} .lsc-modern .lsc-card-logo-img {
height: 60px !important;
width: auto !important;
} .lsc-modern .lsc-card-logo {
padding: .6rem 1rem !important;
border-radius: 14px !important;
} .lsc-modern .lsc-mini-logo {
height: 40px !important;
width: auto !important;
margin-right: .6rem;
} .lscx-tip {
margin-top: 1rem;
padding: 1rem 1.2rem;
border-radius: 14px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.18);
color: var(--lscx-text);
display: flex;
align-items: flex-start;
gap: .6rem;
line-height: 1.55;
} .lscx-tip-icon {
font-size: 1.25rem;
line-height: 1;
} .lsc-modern .lsc-card-screenshot img {
width: 100%;
max-width: 92%;
margin: 0 auto;
display: block;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.12);
} .lsc-comparison {
margin: 3rem auto;
padding: 2.2rem 1.5rem;
max-width: 1100px;
color: var(--lscx-text);
background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.12);
border-radius: 18px;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.lsc-comparison-title {
text-align: center;
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 700;
margin-bottom: 1.5rem;
}
.lsc-comparison-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
}
@media (min-width: 700px) {
.lsc-comparison-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1000px) {
.lsc-comparison-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.lsc-comparison-item {
padding: 1rem 1.2rem;
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.14);
border-radius: 14px;
text-align: center;
font-size: .95rem;
transition: background .25s ease, border-color .25s ease, transform .15s ease;
}
.lsc-comparison-item strong {
font-weight: 700;
display: block;
margin-bottom: .25rem;
font-size: 1rem;
}
.lsc-comparison-item em {
color: var(--lscx-text-dim);
font-style: normal;
}
.lsc-comparison-item:hover {
background: rgba(255,255,255,.1);
border-color: rgba(255,255,255,.25);
transform: translateY(-2px);
} .lsc-faq {
max-width: 900px;
margin: 3rem auto;
padding: 0 1.5rem 2rem;
color: #f2f2f2;
font-family: "Inter", sans-serif;
}
.lsc-faq-title {
text-align: center;
font-size: clamp(1.6rem, 4vw, 2rem);
margin-bottom: 1.8rem;
font-weight: 700;
} .lsc-faq-item {
margin-bottom: 1rem;
border-radius: 14px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.10);
overflow: hidden;
transition: background 0.25s ease, border-color 0.25s ease,
box-shadow 0.25s ease, transform 0.15s ease;
}
.lsc-faq-item[open] {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.18);
box-shadow: 0 10px 30px rgba(0,0,0,0.45);
transform: translateY(-1px);
} .lsc-faq-item summary {
padding: 1rem 1.2rem;
cursor: pointer;
list-style: none;
font-weight: 600;
position: relative;
} .lsc-faq-item summary::-webkit-details-marker {
display: none;
} .lsc-faq-item summary::after {
content: "+";
position: absolute;
right: 1.2rem;
top: 50%;
transform: translateY(-50%);
font-weight: 700;
font-size: 1.2rem;
transition: transform 0.25s ease;
}
.lsc-faq-item[open] summary::after {
transform: translateY(-50%) rotate(45deg);
} .lsc-faq-content {
padding: 0 1.2rem 1rem;
border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.lsc-faq-content p {
margin: 0.75rem 0 0;
font-size: 0.95rem;
line-height: 1.6;
color: rgba(255,255,255,0.85);
} .lsc-notice {
max-width: 900px;
margin: 2.5rem auto 3rem;
padding: 1.1rem 1.4rem;
border-radius: 14px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.12);
color: var(--lscx-text);
font-size: .95rem;
line-height: 1.55;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
box-shadow: 0 6px 20px rgba(0,0,0,0.35);
position: relative;
} .lsc-notice::before {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 4px;
border-radius: 14px 0 0 14px;
background: linear-gradient(180deg, var(--lscx-accent), var(--lscx-accent-2));
opacity: .85;
} .lsc-notice strong {
color: #fff;
font-weight: 700;
} @media (max-width: 600px) {
.lsc-notice {
padding: 1rem 1.1rem;
font-size: 0.9rem;
}
} .lsc-modern .lsc-card {
position: relative;
} .lsc-modern .lsc-card-overlay {
position: absolute;
inset: 0;
z-index: 1;
text-indent: -9999px; background: transparent;
} .lsc-modern .lsc-card-header,
.lsc-modern .lsc-card-screenshot,
.lsc-modern .lsc-card-body,
.lsc-modern .lsc-card-footer,
.lsc-modern .lsc-card-tip,
.lsc-modern .lsc-card-logo,
.lsc-modern .lsc-mini-logo,
.lsc-modern .lsc-btn {
position: relative;
z-index: 2;
} .lscx-quick-portal .lscx-quickbox {
background:
radial-gradient(900px 400px at 0% 0%, rgba(255,77,136,.16), transparent 60%),
radial-gradient(900px 400px at 100% 100%, rgba(0,225,214,.12), transparent 60%),
rgba(7,8,13,.96);
border-radius: 22px;
border: 1px solid rgba(255,255,255,.12);
}
.lscx-quickbox-head {
display: flex;
gap: 1.1rem;
align-items: flex-start;
margin-bottom: 1.4rem;
}
.lscx-quickbox-icon {
width: 48px;
height: 48px;
border-radius: 999px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.7rem;
background: linear-gradient(135deg, var(--lscx-accent), var(--lscx-accent-2));
box-shadow: 0 10px 24px rgba(0,0,0,.6);
flex-shrink: 0;
} .lscx-quickgrid {
display: grid;
grid-template-columns: 1fr;
gap: .8rem;
margin: 1.1rem 0 1.5rem;
}
@media (min-width: 720px) {
.lscx-quickgrid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
} .lscx-qpill {
display: flex;
flex-direction: column;
align-items: flex-start;
padding: .7rem .9rem;
border-radius: 14px;
text-decoration: none;
background: rgba(255,255,255,.04);
border: 1px solid rgba(255,255,255,.14);
transition:
background .18s ease,
border-color .18s ease,
transform .1s ease,
box-shadow .18s ease;
}
.lscx-qpill:hover {
background: rgba(255,255,255,.08);
border-color: rgba(255,255,255,.4);
transform: translateY(-1px);
box-shadow: 0 10px 26px rgba(0,0,0,.55);
}
.lscx-qpill-title {
font-weight: 600;
font-size: .98rem;
margin-bottom: .15rem;
color: #ffffff;
}
.lscx-qpill-meta {
font-size: .86rem;
color: var(--lscx-text-dim);
} .lscx-qpill--de {
border-color: rgba(255,77,136,.6);
}
.lscx-qpill--premium {
border-color: rgba(191,90,242,.7);
}
.lscx-qpill--budget {
border-color: rgba(0,225,214,.7);
}
.lscx-quickbox-footer {
display: flex;
flex-wrap: wrap;
gap: .5rem;
margin-top: .4rem;
} .lscx-grid--cards > p {
display: none !important;
margin: 0 !important;
padding: 0 !important;
} .lscx-grid--categories {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px;
} .lscx-card--catB {
position: relative;
border-radius: 18px;
padding: 20px 20px 18px;
background: radial-gradient(circle at top left,
rgba(255,255,255,0.10), transparent 55%)
,
rgba(10,10,20,0.95);
border: 1px solid rgba(255,255,255,0.08);
box-shadow: 0 12px 32px rgba(0,0,0,0.45);
overflow: hidden;
transition: transform .22s ease, box-shadow .22s ease;
}
.lscx-card--catB:hover {
transform: translateY(-4px);
box-shadow: 0 18px 46px rgba(0,0,0,0.55);
} .catB-head {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.catB-icon {
flex-shrink: 0;
width: 40px;
height: 40px;
border-radius: 999px;
display: flex;
align-items: center;
justify-content: center;
font-size: .8rem;
font-weight: 700;
letter-spacing: .06em;
color: #fff;
background: linear-gradient(135deg, var(--c1), var(--c2));
box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.catB-title {
margin: 0 0 3px;
font-size: 1.25rem;
font-weight: 700;
}
.catB-tagline {
margin: 0;
font-size: .85rem;
opacity: .8;
} .catB-list {
margin: 6px 0 14px 20px;
padding: 0;
font-size: .9rem;
} .catB-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 10px 16px;
border-radius: 999px;
font-size: .9rem;
font-weight: 600;
text-decoration: none;
color: #fff;
background: linear-gradient(135deg, var(--c1), var(--c2));
box-shadow: 0 8px 22px rgba(0,0,0,0.45);
border: none;
transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.catB-btn:hover {
transform: translateY(-2px);
box-shadow: 0 12px 30px rgba(0,0,0,0.55);
filter: brightness(1.05);
} .catB--de        { --c1:#ffb36b; --c2:#ff6b7f; }
.catB--ama       { --c1:#ff90d0; --c2:#ff4f9a; }
.catB--premium   { --c1:#9bb2ff; --c2:#5a72ff; }
.catB--budget    { --c1:#8fffc5; --c2:#33e4a6; }
.catB--events    { --c1:#ffd97a; --c2:#ff9a57; }
.catB--community { --c1:#a48bff; --c2:#5a54ff; } .lscx-grid--categories > p {
display: none;
} .lscx-card--catB {
display: flex;
flex-direction: column;
} .catB-list {
margin: 6px 0 16px 20px;
} .catB-btn {
align-self: flex-start;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 16px;
border-radius: 999px;
font-size: .85rem;
font-weight: 600;
text-decoration: none;
color: #fff;
background: linear-gradient(135deg, var(--c1), var(--c2));
box-shadow: 0 6px 16px rgba(0,0,0,0.4);
border: none;
transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.catB-btn::after {
content: "➜";
font-size: .9rem;
}
.catB-btn:hover {
transform: translateX(3px);
box-shadow: 0 10px 24px rgba(0,0,0,0.5);
filter: brightness(1.06);
}