:root {
--cmq-bg-dark: #0d0d0d;
--cmq-bg-card: #1a1a1a;
--cmq-bg-hover: #252525;
--cmq-border: #333333;
--cmq-text-primary: #ffffff;
--cmq-text-secondary: #b3b3b3;
--cmq-accent: #ff3366;
--cmq-accent-hover: #ff1a53;
--cmq-accent-glow: rgba(255, 51, 102, 0.3);
--cmq-success: #00cc66;
--cmq-gradient: linear-gradient(135deg, #ff3366 0%, #ff6b35 100%);
} .cmq-quiz-container {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
background: var(--cmq-bg-dark);
color: var(--cmq-text-primary);
max-width: 100%;
width: 100%;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
min-height: 400px;
border-radius: 16px;
position: relative;
overflow: hidden;
}
.cmq-quiz-container * {
box-sizing: border-box;
} .cmq-quiz-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0; background: 
linear-gradient(180deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.65) 100%),
var(--cmq-bg-image, url(//peepnow.net/wp-content/plugins/cam-matcher/assets/css/images/age-gate-bg.jpg));
background-size: cover;
background-position: center;
filter: blur(8px);
transform: scale(1.1); opacity: 0;
transition: opacity 0.5s ease;
pointer-events: none;
z-index: 0;
}
.cmq-quiz-container.cmq-show-blur-bg::before {
opacity: 1;
}
.cmq-quiz-container > * {
position: relative;
z-index: 1;
} .cmq-age-gate {
text-align: center;
padding: 40px 20px;
animation: cmq-fadeIn 0.5s ease;
}
.cmq-warning-title {
font-size: 26px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
color: #ff0044;
margin: 0 0 20px;
text-shadow: 0 0 30px rgba(255, 0, 68, 0.5);
}
.cmq-warning-subline {
font-size: 15px;
color: var(--cmq-text-secondary);
line-height: 1.6;
margin: 0 0 35px;
max-width: 400px;
margin-left: auto;
margin-right: auto;
}
.cmq-age-gate-buttons {
display: flex;
flex-direction: column;
gap: 12px;
max-width: 350px;
margin: 0 auto;
} .cmq-primary-btn {
background: linear-gradient(135deg, #ff0044 0%, #cc0033 100%);
border: none;
color: #fff;
padding: 20px 30px;
border-radius: 10px;
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
text-transform: none;
animation: cmq-pulse-primary 2s ease-in-out infinite;
box-shadow: 0 4px 25px rgba(255, 0, 68, 0.4);
}
.cmq-primary-btn:hover {
transform: scale(1.03);
box-shadow: 0 6px 35px rgba(255, 0, 68, 0.5);
}
@keyframes cmq-pulse-primary {
0%, 100% { 
box-shadow: 0 4px 25px rgba(255, 0, 68, 0.4);
}
50% { 
box-shadow: 0 4px 40px rgba(255, 0, 68, 0.6);
}
} .cmq-ghost-link {
background: none;
border: none;
color: #555;
padding: 8px;
font-size: 12px;
font-weight: 400;
cursor: pointer;
text-decoration: underline;
margin-top: 20px;
transition: color 0.2s ease;
}
.cmq-ghost-link:hover {
color: #777;
background: none;
transform: none;
box-shadow: none;
} .cmq-social-proof {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 13px;
color: #888;
margin-top: 30px;
} .cmq-social-proof.cmq-social-top {
margin: 0 0 25px;
padding: 8px 18px;
background: rgba(0, 200, 100, 0.08);
border-radius: 30px;
border: 1px solid rgba(0, 200, 100, 0.2);
font-size: 12px;
color: rgba(140, 230, 140, 0.9);
}
.cmq-live-dot {
width: 8px;
height: 8px;
background: #00cc66;
border-radius: 50%;
animation: cmq-blink 1.5s ease-in-out infinite;
box-shadow: 0 0 8px rgba(0, 204, 102, 0.6);
}
@keyframes cmq-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
} .cmq-progress-bar {
background: var(--cmq-bg-card);
border-radius: 50px;
height: 8px;
position: relative;
margin-bottom: 30px;
overflow: hidden;
}
.cmq-progress-fill {
background: var(--cmq-gradient);
height: 100%;
border-radius: 50px;
transition: width 0.4s ease;
}
.cmq-progress-text {
display: block;
text-align: center;
font-size: 13px;
color: var(--cmq-text-secondary);
margin-top: 10px;
} .cmq-question-wrapper {
animation: cmq-fadeIn 0.4s ease;
}
@keyframes cmq-fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
} .cmq-question-title {
font-size: 24px;
font-weight: 600;
text-align: center;
margin-bottom: 10px;
line-height: 1.4;
color: var(--cmq-text-primary);
}
.cmq-question-subline {
font-size: 14px;
color: var(--cmq-text-secondary);
text-align: center;
margin: 0 0 25px;
} .cmq-answers {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 500px;
margin: 0 auto;
}
.cmq-answers.cmq-card-grid {
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.cmq-answer-btn {
background: var(--cmq-bg-card);
border: 2px solid var(--cmq-border);
color: var(--cmq-text-primary);
padding: 20px 25px;
border-radius: 12px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.25s ease;
text-align: center;
width: 100%;
display: block;
}
.cmq-answer-btn:hover {
background: var(--cmq-bg-hover);
border-color: var(--cmq-accent);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.cmq-answer-btn:active {
transform: translateY(0);
}
.cmq-answer-btn.cmq-selected {
background: var(--cmq-accent);
border-color: var(--cmq-accent);
color: #fff;
} .cmq-card-grid {
display: grid;
grid-template-columns: 1fr;
gap: 15px;
max-width: 100%;
padding: 15px 5px;
}
.cmq-card-btn {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: var(--cmq-bg-card);
border: 2px solid var(--cmq-border);
color: var(--cmq-text-primary);
padding: 25px 20px;
border-radius: 16px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
gap: 12px;
overflow: visible;
}
.cmq-card-btn:hover {
background: var(--cmq-bg-hover);
border-color: var(--cmq-accent);
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.cmq-card-btn.cmq-selected {
background: rgba(255, 0, 68, 0.15);
border-color: var(--cmq-accent);
} .cmq-card-default {
background: var(--cmq-bg-card);
border-color: #444;
}
.cmq-card-default .cmq-card-icon {
color: #999;
}
.cmq-card-default:hover {
background: var(--cmq-bg-hover);
border-color: #666;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.cmq-card-default.cmq-selected {
background: rgba(255, 255, 255, 0.08);
border-color: #888;
}
.cmq-card-icon {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
color: var(--cmq-accent);
margin-bottom: 5px;
}
.cmq-card-icon svg {
width: 100%;
height: 100%;
}
.cmq-card-text {
font-size: 18px;
font-weight: 600;
color: var(--cmq-text-primary);
}
.cmq-card-subtext {
font-size: 13px;
color: var(--cmq-text-secondary);
line-height: 1.4;
} @media (min-width: 540px) {
.cmq-card-grid {
grid-template-columns: repeat(3, 1fr);
gap: 18px;
max-width: 650px;
}
.cmq-card-btn {
padding: 30px 15px;
min-height: 200px;
}
.cmq-card-icon {
width: 70px;
height: 70px;
}
.cmq-card-text {
font-size: 16px;
}
.cmq-card-subtext {
font-size: 12px;
}
}
@media (min-width: 768px) {
.cmq-card-grid {
gap: 20px;
max-width: 700px;
}
.cmq-card-btn {
padding: 35px 20px;
min-height: 220px;
}
.cmq-card-icon {
width: 80px;
height: 80px;
}
.cmq-card-text {
font-size: 17px;
}
.cmq-card-subtext {
font-size: 13px;
}
} .cmq-card-grid-2 {
grid-template-columns: 1fr;
}
@media (min-width: 480px) {
.cmq-card-grid-2 {
grid-template-columns: repeat(2, 1fr);
max-width: 500px;
}
}
@media (min-width: 768px) {
.cmq-card-grid-2 {
max-width: 550px;
gap: 25px;
}
.cmq-card-grid-2 .cmq-card-btn {
min-height: 240px;
padding: 40px 25px;
}
} .cmq-card-muted {
background: rgba(255, 255, 255, 0.03);
border-color: #444;
}
.cmq-card-muted .cmq-card-icon {
color: #888;
}
.cmq-card-muted .cmq-card-text {
color: #aaa;
}
.cmq-card-muted:hover {
background: rgba(255, 255, 255, 0.06);
border-color: #666;
transform: translateY(-2px);
}
.cmq-card-muted.cmq-selected {
background: rgba(255, 255, 255, 0.08);
border-color: #888;
} .cmq-card-highlight {
position: relative;
background: rgba(255, 0, 68, 0.08);
border: 2px solid #cc0000;
animation: cmq-card-glow 2s ease-in-out infinite;
box-shadow: 0 0 20px rgba(255, 0, 68, 0.3);
}
.cmq-card-highlight .cmq-card-icon {
color: #ff3366;
}
.cmq-card-highlight:hover {
background: rgba(255, 0, 68, 0.15);
border-color: #ff0044;
transform: translateY(-4px);
box-shadow: 0 8px 35px rgba(255, 0, 68, 0.4);
}
.cmq-card-highlight.cmq-selected {
background: rgba(255, 0, 68, 0.2);
border-color: #ff0044;
}
@keyframes cmq-card-glow {
0%, 100% {
box-shadow: 0 0 20px rgba(255, 0, 68, 0.3);
}
50% {
box-shadow: 0 0 35px rgba(255, 0, 68, 0.5);
}
} .cmq-card-gold {
position: relative;
background: linear-gradient(145deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 180, 0, 0.03) 100%);
border: 2px solid #d4af37;
animation: cmq-card-gold-glow 2.5s ease-in-out infinite;
box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
}
.cmq-card-gold .cmq-card-icon {
color: #ffd700;
}
.cmq-card-gold .cmq-card-text {
color: #fff;
text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
.cmq-card-gold:hover {
background: linear-gradient(145deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 180, 0, 0.08) 100%);
border-color: #ffd700;
transform: translateY(-4px) scale(1.02);
box-shadow: 0 12px 40px rgba(255, 215, 0, 0.35);
}
.cmq-card-gold.cmq-selected {
background: linear-gradient(145deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 180, 0, 0.1) 100%);
border-color: #ffd700;
}
@keyframes cmq-card-gold-glow {
0%, 100% {
box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
}
50% {
box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}
} .cmq-card-badge {
position: absolute;
top: -10px;
right: -10px;
background: linear-gradient(135deg, #ff0044 0%, #ff6600 100%);
color: #fff;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 6px 10px;
border-radius: 6px;
white-space: nowrap;
box-shadow: 0 4px 15px rgba(255, 0, 68, 0.4);
}
@media (min-width: 480px) {
.cmq-card-badge {
font-size: 11px;
padding: 7px 12px;
top: -12px;
right: -8px;
}
} .cmq-card-badge.cmq-badge-gold {
background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #b8860b 100%);
color: #1a1a1a;
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
} .cmq-card-default .cmq-card-badge {
background: linear-gradient(135deg, #444 0%, #333 100%);
color: #ccc;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
} .cmq-card-trust {
background: rgba(76, 175, 80, 0.05);
border-color: #4a4a4a;
}
.cmq-card-trust .cmq-card-icon {
color: #4caf50;
}
.cmq-card-trust:hover {
background: rgba(76, 175, 80, 0.1);
border-color: #4caf50;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}
.cmq-card-trust.cmq-selected {
background: rgba(76, 175, 80, 0.15);
border-color: #4caf50;
} .cmq-card-stealth {
background: linear-gradient(145deg, rgba(100, 100, 100, 0.08) 0%, rgba(60, 60, 60, 0.03) 100%);
border: 2px solid #555;
border-style: dashed;
}
.cmq-card-stealth .cmq-card-icon {
color: #888;
}
.cmq-card-stealth .cmq-card-text {
color: #ccc;
}
.cmq-card-stealth:hover {
background: linear-gradient(145deg, rgba(100, 100, 100, 0.12) 0%, rgba(60, 60, 60, 0.06) 100%);
border-color: #777;
border-style: solid;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.cmq-card-stealth.cmq-selected {
background: rgba(100, 100, 100, 0.15);
border-color: #888;
border-style: solid;
} .cmq-trust-section {
margin-top: 30px;
text-align: center;
}
.cmq-trust-label {
font-size: 12px;
color: #666;
margin: 0 0 15px;
letter-spacing: 0.5px;
}
.cmq-trust-badges {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}
.cmq-trust-badge {
display: flex;
align-items: center;
justify-content: center;
color: #555;
opacity: 0.6;
transition: opacity 0.2s ease;
}
.cmq-trust-badge:hover {
opacity: 0.9;
}
.cmq-trust-badge svg {
width: 40px;
height: 26px;
}
@media (min-width: 480px) {
.cmq-trust-badges {
gap: 30px;
}
.cmq-trust-badge svg {
width: 50px;
height: 30px;
}
} .cmq-loading-screen {
text-align: center;
padding: 60px 20px;
}
.cmq-loader-animation {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
max-width: 350px;
margin: 0 auto;
}
.cmq-loader-icon {
font-size: 50px;
animation: cmq-icon-pulse 0.6s ease-in-out infinite;
}
@keyframes cmq-icon-pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.cmq-loader-text {
font-size: 18px;
font-weight: 600;
color: var(--cmq-text-primary);
margin: 0;
min-height: 28px;
transition: opacity 0.2s ease;
}
.cmq-loader-progress {
width: 100%;
height: 8px;
background: var(--cmq-bg-card);
border-radius: 10px;
overflow: hidden;
margin-top: 10px;
}
.cmq-loader-progress-bar {
height: 100%;
background: linear-gradient(90deg, var(--cmq-accent) 0%, #ff6b35 50%, var(--cmq-accent) 100%);
background-size: 200% 100%;
border-radius: 10px;
width: 0%;
transition: width 0.4s ease-out;
animation: cmq-progress-shimmer 1.5s ease-in-out infinite;
}
@keyframes cmq-progress-shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
.cmq-loader-subtext {
font-size: 13px;
color: var(--cmq-text-secondary);
margin: 5px 0 0;
min-height: 20px;
} .cmq-result-screen {
animation: cmq-fadeIn 0.5s ease;
} .cmq-quiz-container.cmq-show-result-bg::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
linear-gradient(180deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.9) 100%),
var(--cmq-result-bg, linear-gradient(135deg, rgba(255,0,100,0.1) 0%, rgba(100,0,50,0.2) 100%));
background-size: cover;
background-position: center;
filter: blur(20px);
transform: scale(1.1);
opacity: 1;
pointer-events: none;
z-index: 0;
}
.cmq-result-card {
position: relative;
z-index: 1;
background: rgba(20, 20, 20, 0.95);
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
} .cmq-result-logo-section {
padding: 30px 20px 20px;
text-align: center;
background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
}
.cmq-result-logo {
max-width: 180px;
max-height: 60px;
width: auto;
height: auto;
display: block;
margin: 0 auto;
filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.cmq-result-logo-text {
font-size: 32px;
font-weight: 700;
color: #fff;
text-shadow: 0 4px 20px rgba(0,0,0,0.5);
} .cmq-result-content {
padding: 25px 25px 35px;
text-align: center;
} .cmq-result-badge {
display: inline-block;
background: linear-gradient(135deg, #00cc66 0%, #00aa55 100%);
color: #fff;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
padding: 8px 16px;
border-radius: 50px;
margin-bottom: 20px;
animation: cmq-badge-pulse 2s ease-in-out infinite;
box-shadow: 0 0 20px rgba(0, 204, 102, 0.4);
}
@keyframes cmq-badge-pulse {
0%, 100% { 
box-shadow: 0 0 20px rgba(0, 204, 102, 0.4);
transform: scale(1);
}
50% { 
box-shadow: 0 0 35px rgba(0, 204, 102, 0.6);
transform: scale(1.05);
}
}
.cmq-result-headline {
font-size: 24px;
font-weight: 700;
margin: 0 0 12px;
color: var(--cmq-text-primary);
line-height: 1.3;
}
.cmq-result-subheadline {
font-size: 15px;
color: var(--cmq-text-secondary);
margin: 0 0 25px;
line-height: 1.5;
}
.cmq-result-subheadline strong {
color: var(--cmq-accent);
} .cmq-match-factors {
background: rgba(255, 255, 255, 0.03);
border-radius: 10px;
padding: 12px 15px;
margin-bottom: 20px;
}
.cmq-match-factors ul {
list-style: none;
margin: 0;
padding: 0;
}
.cmq-match-factors li {
padding: 6px 0;
font-size: 13px;
color: #ccc;
display: flex;
align-items: center;
gap: 8px;
}
.cmq-match-factors li::before {
content: '✓';
color: #00cc66;
font-size: 14px;
font-weight: 700;
flex-shrink: 0;
} .cmq-scarcity {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
background: rgba(255, 100, 0, 0.1);
border: 1px solid rgba(255, 100, 0, 0.3);
border-radius: 8px;
padding: 12px 20px;
margin-bottom: 20px;
}
.cmq-scarcity-icon {
font-size: 16px;
animation: cmq-shake 2s ease-in-out infinite;
}
@keyframes cmq-shake {
0%, 100% { transform: rotate(0deg); }
10%, 30% { transform: rotate(-5deg); }
20%, 40% { transform: rotate(5deg); }
50% { transform: rotate(0deg); }
}
.cmq-scarcity-text {
font-size: 13px;
color: #ff9933;
}
.cmq-countdown {
font-weight: 700;
font-family: monospace;
color: #ff6600;
} .cmq-result-content .cmq-cta-btn {
display: block;
width: 100%;
background: linear-gradient(135deg, #cc0000 0%, #ff0044 100%);
color: #fff;
font-size: 17px;
font-weight: 700;
letter-spacing: 0.5px;
text-transform: uppercase;
padding: 18px 30px;
border-radius: 10px;
text-decoration: none;
text-align: center;
transition: all 0.3s ease;
animation: cmq-cta-glow 2s ease-in-out infinite;
box-shadow: 0 0 30px rgba(255, 0, 68, 0.5);
}
.cmq-result-content .cmq-cta-btn:hover {
transform: scale(1.02);
box-shadow: 0 0 45px rgba(255, 0, 68, 0.7);
color: #fff;
text-decoration: none;
}
@keyframes cmq-cta-glow {
0%, 100% { 
box-shadow: 0 0 30px rgba(255, 0, 68, 0.5);
}
50% { 
box-shadow: 0 0 50px rgba(255, 0, 68, 0.7);
}
} .cmq-result-trust {
margin-top: 25px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.05);
}
.cmq-result-trust .cmq-trust-label {
font-size: 11px;
color: #555;
margin: 0 0 12px;
}
.cmq-result-trust .cmq-trust-badges {
gap: 15px;
}
.cmq-result-trust .cmq-trust-badge svg {
width: 35px;
height: 22px;
} @media (min-width: 768px) {
.cmq-result-content {
padding: 30px 40px 40px;
}
.cmq-result-headline {
font-size: 28px;
}
.cmq-result-content .cmq-cta-btn {
font-size: 18px;
padding: 20px 40px;
}
.cmq-match-factors li {
font-size: 15px;
}
} @media (max-width: 767px) { .cmq-result-screen .cmq-result-card {
margin: 0 -5px;
border-radius: 12px;
}
.cmq-result-content {
padding: 15px 15px 90px; } .cmq-result-logo-section {
padding: 15px 15px 10px;
}
.cmq-result-logo {
max-width: 140px;
max-height: 40px;
}
.cmq-result-logo-text {
font-size: 24px;
} .cmq-result-badge {
font-size: 10px;
padding: 6px 12px;
margin-bottom: 12px;
}
.cmq-result-headline {
font-size: 1.3rem;
margin-bottom: 8px;
line-height: 1.2;
}
.cmq-result-subheadline {
font-size: 13px;
margin-bottom: 15px;
} .cmq-match-factors {
padding: 10px 12px;
margin-bottom: 12px;
}
.cmq-match-factors li {
padding: 5px 0;
font-size: 12px;
}
.cmq-match-factors li::before {
font-size: 12px;
} .cmq-scarcity {
padding: 8px 12px;
margin-bottom: 15px;
}
.cmq-scarcity-text {
font-size: 11px;
} .cmq-result-content .cmq-cta-btn {
position: fixed;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
width: calc(100% - 30px);
max-width: 400px;
z-index: 999;
box-shadow: 0 -5px 30px rgba(0,0,0,0.5), 0 0 40px rgba(255, 0, 68, 0.4);
font-size: 15px;
padding: 16px 20px;
border-radius: 10px;
} .cmq-result-trust {
margin-top: 15px;
padding-top: 15px;
}
.cmq-result-trust .cmq-trust-label {
font-size: 10px;
margin-bottom: 8px;
}
.cmq-result-trust .cmq-trust-badges {
gap: 10px;
}
.cmq-result-trust .cmq-trust-badge svg {
width: 28px;
height: 18px;
}
} @media (max-width: 375px) {
.cmq-result-headline {
font-size: 1.15rem;
}
.cmq-match-factors li {
font-size: 11px;
}
.cmq-result-content .cmq-cta-btn {
font-size: 14px;
padding: 14px 15px;
}
} .cmq-exit-screen {
text-align: center;
padding: 60px 20px;
}
.cmq-exit-content {
background: var(--cmq-bg-card);
border-radius: 20px;
padding: 50px 30px;
border: 1px solid var(--cmq-border);
}
.cmq-exit-content h2 {
font-size: 28px;
margin: 0 0 15px;
color: var(--cmq-accent);
}
.cmq-exit-content p {
font-size: 16px;
color: var(--cmq-text-secondary);
margin: 0;
} @media (min-width: 768px) {
.cmq-quiz-container {
max-width: 800px;
padding: 40px;
}
.cmq-question-title {
font-size: 28px;
}
.cmq-answer-btn {
padding: 22px 30px;
font-size: 17px;
}
.cmq-result-card {
padding: 0;
}
.cmq-result-headline {
font-size: 32px;
} .cmq-age-gate {
padding: 60px 40px;
}
.cmq-warning-title {
font-size: 32px;
letter-spacing: 3px;
}
.cmq-warning-subline {
font-size: 16px;
max-width: 450px;
}
.cmq-age-gate-buttons {
max-width: 400px;
}
.cmq-primary-btn {
padding: 22px 40px;
font-size: 18px;
}
} @media (min-width: 1024px) {
.cmq-quiz-container {
max-width: 850px;
padding: 50px 60px;
}
.cmq-answers {
max-width: 600px;
}
.cmq-card-grid {
max-width: 750px;
}
} .cmq-answer-btn:focus {
outline: 2px solid var(--cmq-accent);
outline-offset: 2px;
}
.cmq-cta-btn:focus {
outline: 2px solid #fff;
outline-offset: 2px;
} @media (prefers-reduced-motion: reduce) {
.cmq-quiz-container *,
.cmq-quiz-container *::before,
.cmq-quiz-container *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}.cam-portals-container {
max-width: 1400px;
margin: 0 auto;
padding: 30px 20px;
background: linear-gradient(135deg, #39001d 0%, #1a0010 50%, #000000 100%);
min-height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
} .cam-portals-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
padding: 20px 25px;
background: #2e3336;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.cam-portals-count {
display: flex;
gap: 15px;
align-items: center;
}
.cam-total-count {
font-size: 18px;
font-weight: 600;
color: #ffffff;
}
.cam-online-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 14px;
background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
color: white;
border-radius: 20px;
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
box-shadow: 0 2px 10px rgba(0, 230, 118, 0.4);
}
.cam-online-badge .pulse-dot {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
background: white;
animation: pulse-dot 1.5s infinite;
}
.cam-refresh-btn {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: linear-gradient(135deg, #ff559b 0%, #ff0066 100%);
border: none;
border-radius: 25px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
color: #fff;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(255, 85, 155, 0.3);
}
.cam-refresh-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 85, 155, 0.5);
}
.refresh-icon {
font-size: 18px;
display: inline-block;
transition: transform 0.3s ease;
}
.cam-refresh-btn:hover .refresh-icon {
transform: rotate(180deg);
} .cam-portals-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.cam-portals-grid.cam-columns-2 {
grid-template-columns: repeat(2, 1fr);
}
.cam-portals-grid.cam-columns-3 {
grid-template-columns: repeat(3, 1fr);
}
.cam-portals-grid.cam-columns-4 {
grid-template-columns: repeat(4, 1fr);
} .cam-model-card {
background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.cam-model-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(255, 85, 155, 0.3), 0 0 0 1px rgba(255, 85, 155, 0.5);
}
.cam-model-card.cam-online {
border: 1px solid rgba(255, 85, 155, 0.3);
}
.cam-model-link {
text-decoration: none;
color: inherit;
display: block;
} .cam-model-image {
position: relative;
width: 100%;
padding-bottom: 100%;
overflow: hidden;
background: #1a1a1a;
}
.cam-model-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cam-model-card:hover .cam-model-image img {
transform: scale(1.1);
} .cam-status-overlay {
position: absolute;
top: 15px;
right: 15px;
z-index: 2;
}
.cam-status-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 16px;
border-radius: 25px;
font-size: 12px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
backdrop-filter: blur(10px);
}
.cam-badge-live {
background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
color: white;
animation: pulse-shadow-green 2s infinite;
}
.cam-badge-offline {
background: rgba(100, 100, 100, 0.9);
color: #cccccc;
} .cam-pulse-dot {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
background: white;
animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0;
transform: scale(1.5);
}
}
@keyframes pulse-shadow-green {
0%, 100% {
box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}
50% {
box-shadow: 0 4px 25px rgba(0, 230, 118, 0.7);
}
} .cam-model-info {
padding: 20px;
background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
} .cam-model-name {
margin: 0 0 12px 0;
font-size: 20px;
font-weight: 700;
color: #ffffff;
text-align: center;
line-height: 1.3;
}
.cam-model-age {
font-size: 16px;
font-weight: 400;
color: #ff559b;
margin-left: 5px;
} .cam-model-languages {
display: flex;
justify-content: center;
gap: 8px;
margin-bottom: 15px;
flex-wrap: wrap;
}
.cam-flag-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 20px;
background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
font-size: 11px;
font-weight: 700;
color: #ffffff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}
.cam-flag-icon:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(255, 85, 155, 0.3);
border-color: #ff559b;
} .cam-cta-container {
margin-top: 15px;
} .cam-cta-button {
width: 100%;
padding: 14px 20px;
background: linear-gradient(135deg, #ff559b 0%, #ff0066 100%);
border: none;
border-radius: 30px;
font-size: 15px;
font-weight: 700;
color: white;
text-transform: uppercase;
letter-spacing: 0.5px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(255, 85, 155, 0.4);
}
.cam-cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(255, 85, 155, 0.6);
}
.cam-cta-button:active {
transform: translateY(0);
} .cam-cta-offline {
background: linear-gradient(135deg, #666666 0%, #444444 100%);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.cam-cta-offline:hover {
background: linear-gradient(135deg, #777777 0%, #555555 100%);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
} .cam-loading-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.9);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.cam-spinner {
width: 60px;
height: 60px;
border: 6px solid rgba(255, 255, 255, 0.1);
border-top: 6px solid #ff559b;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} .cam-error,
.cam-no-results {
padding: 60px 40px;
text-align: center;
background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.cam-error p,
.cam-no-results p {
margin: 0;
font-size: 18px;
color: #cccccc;
}  @media (max-width: 992px) {
.cam-portals-grid,
.cam-portals-grid.cam-columns-3,
.cam-portals-grid.cam-columns-4 {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.cam-portals-container {
padding: 20px 15px;
}
.cam-portals-header {
flex-direction: column;
gap: 15px;
}
.cam-model-name {
font-size: 18px;
}
} @media (max-width: 640px) {
.cam-portals-grid,
.cam-portals-grid.cam-columns-2,
.cam-portals-grid.cam-columns-3,
.cam-portals-grid.cam-columns-4 {
grid-template-columns: 1fr;
gap: 20px;
}
.cam-portals-container {
padding: 15px 10px;
}
.cam-model-name {
font-size: 16px;
}
.cam-total-count {
font-size: 16px;
}
.cam-portals-header {
padding: 15px;
margin-bottom: 25px;
}
.cam-cta-button {
padding: 12px 18px;
font-size: 14px;
}
.cam-status-overlay {
top: 10px;
right: 10px;
}
.cam-status-badge {
padding: 6px 12px;
font-size: 10px;
}
}  .cam-search-bar {
margin-bottom: 20px;
}
.cam-search-input {
width: 100%;
padding: 15px 20px;
background: #2a2a2a;
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 30px;
color: #ffffff;
font-size: 16px;
transition: all 0.3s ease;
}
.cam-search-input:focus {
outline: none;
border-color: #ff559b;
box-shadow: 0 0 20px rgba(255, 85, 155, 0.3);
}
.cam-search-input::placeholder {
color: #888;
} .cam-filter-bar {
display: flex;
gap: 15px;
margin-bottom: 30px;
flex-wrap: wrap;
}
.cam-filter-select {
flex: 1;
min-width: 200px;
padding: 12px 20px;
background: #2a2a2a;
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 25px;
color: #ffffff;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
}
.cam-filter-select:hover,
.cam-filter-select:focus {
border-color: #ff559b;
outline: none;
} .cam-layout-list .cam-list-view {
display: flex;
flex-direction: column;
gap: 20px;
}
.cam-list-item {
background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
border-radius: 15px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.cam-list-item:hover {
transform: translateX(5px);
border-color: rgba(255, 85, 155, 0.5);
box-shadow: 0 10px 30px rgba(255, 85, 155, 0.2);
}
.cam-list-link {
display: flex;
align-items: center;
gap: 20px;
text-decoration: none;
color: inherit;
padding: 15px;
}
.cam-list-image {
position: relative;
flex-shrink: 0;
width: 150px;
height: 150px;
border-radius: 10px;
overflow: hidden;
background: #1a1a1a;
}
.cam-list-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.cam-list-image .cam-status-badge {
position: absolute;
top: 10px;
right: 10px;
font-size: 10px;
padding: 5px 10px;
}
.cam-list-info {
flex: 1;
}
.cam-list-cta {
flex-shrink: 0;
padding-right: 15px;
}
.cam-list-cta .cam-cta-button {
width: auto;
padding: 12px 25px;
font-size: 14px;
white-space: nowrap;
} .cam-layout-single .cam-single-model {
max-width: 600px;
margin: 0 auto;
background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.cam-single-link {
text-decoration: none;
color: inherit;
display: block;
}
.cam-single-image {
position: relative;
width: 100%;
padding-bottom: 100%;
background: #1a1a1a;
}
.cam-single-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.cam-badge-large {
padding: 12px 24px;
font-size: 16px;
}
.cam-single-info {
padding: 30px;
text-align: center;
}
.cam-single-name {
margin: 0 0 20px 0;
font-size: 28px;
font-weight: 700;
color: #ffffff;
}
.cam-single-languages {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-bottom: 25px;
font-size: 14px;
color: #aaa;
}
.cam-single-cta {
margin-top: 20px;
}
.cam-cta-large {
padding: 18px 40px;
font-size: 18px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
} .cam-layout-compact .cam-compact-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
padding: 15px 20px;
background: #2a2a2a;
border-radius: 10px;
}
.cam-online-badge-small {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 5px 12px;
background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
color: white;
border-radius: 15px;
font-size: 12px;
font-weight: 700;
}
.cam-compact-grid {
display: grid;
gap: 15px;
}
.cam-compact-grid.cam-columns-2 {
grid-template-columns: repeat(2, 1fr);
}
.cam-compact-grid.cam-columns-3 {
grid-template-columns: repeat(3, 1fr);
}
.cam-compact-grid.cam-columns-4 {
grid-template-columns: repeat(4, 1fr);
}
.cam-compact-card {
border-radius: 10px;
overflow: hidden;
transition: all 0.3s ease;
}
.cam-compact-card:hover {
transform: scale(1.05);
box-shadow: 0 10px 25px rgba(255, 85, 155, 0.3);
}
.cam-compact-link {
text-decoration: none;
display: block;
}
.cam-compact-image {
position: relative;
width: 100%;
padding-bottom: 100%;
background: #1a1a1a;
}
.cam-compact-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.cam-compact-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 15px;
background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
color: white;
opacity: 0;
transition: opacity 0.3s ease;
}
.cam-compact-card:hover .cam-compact-overlay {
opacity: 1;
}
.cam-compact-name {
font-size: 14px;
font-weight: 700;
margin-bottom: 5px;
}
.cam-compact-live {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 11px;
font-weight: 700;
background: #00e676;
padding: 3px 8px;
border-radius: 10px;
} .cam-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
margin-top: 40px;
padding: 20px;
flex-wrap: wrap;
}
.cam-page-btn {
padding: 10px 16px;
background: #2a2a2a;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: #ffffff;
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: all 0.3s ease;
min-width: 40px;
text-align: center;
}
.cam-page-btn:hover {
background: #ff559b;
border-color: #ff559b;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(255, 85, 155, 0.3);
}
.cam-page-current {
background: linear-gradient(135deg, #ff559b 0%, #ff0066 100%);
border-color: #ff559b;
box-shadow: 0 4px 15px rgba(255, 85, 155, 0.4);
}
.cam-page-dots {
color: #666;
padding: 0 5px;
}
.cam-page-info {
padding: 10px 16px;
color: #ffffff;
font-size: 14px;
font-weight: 600;
} .cam-layout-slider .cam-slider-container {
margin: 0 -10px;
}
.swiper {
padding: 10px;
}
.swiper-button-next,
.swiper-button-prev {
color: #ff559b !important;
background: rgba(42, 42, 42, 0.9);
width: 50px !important;
height: 50px !important;
border-radius: 50%;
transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
background: #ff559b;
color: white !important;
transform: scale(1.1);
}
.swiper-button-next:after,
.swiper-button-prev:after {
font-size: 20px !important;
}
.swiper-pagination-bullet {
background: #666 !important;
opacity: 1 !important;
width: 10px !important;
height: 10px !important;
}
.swiper-pagination-bullet-active {
background: #ff559b !important;
width: 25px !important;
border-radius: 5px !important;
} @media (max-width: 768px) {
.cam-list-link {
flex-direction: column;
text-align: center;
}
.cam-list-image {
width: 100%;
height: 200px;
}
.cam-list-cta {
width: 100%;
padding: 0 15px 15px;
}
.cam-list-cta .cam-cta-button {
width: 100%;
}
.cam-filter-bar {
flex-direction: column;
}
.cam-filter-select {
width: 100%;
}
.cam-compact-grid.cam-columns-3,
.cam-compact-grid.cam-columns-4 {
grid-template-columns: repeat(2, 1fr);
}
} .mdh-featured-container {
margin-bottom: 60px;
padding: 40px 20px;
background: linear-gradient(135deg, #ff0066 0%, #ff559b 50%, #ff0066 100%);
border-radius: 25px;
box-shadow: 0 20px 60px rgba(255, 0, 102, 0.4);
position: relative;
overflow: hidden;
} .mdh-featured-container::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
animation: featured-pulse 10s infinite ease-in-out;
}
@keyframes featured-pulse {
0%, 100% {
transform: translate(0, 0) scale(1);
}
50% {
transform: translate(10%, 10%) scale(1.1);
}
} .mdh-featured-header {
text-align: center;
margin-bottom: 40px;
position: relative;
z-index: 1;
}
.mdh-featured-title {
margin: 0 0 10px 0;
font-size: 42px;
font-weight: 900;
color: white;
text-transform: uppercase;
letter-spacing: 3px;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
animation: featured-glow 2s infinite ease-in-out;
}
@keyframes featured-glow {
0%, 100% {
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
}
50% {
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 255, 255, 0.6);
}
}
.mdh-featured-subtitle {
font-size: 18px;
color: rgba(255, 255, 255, 0.95);
font-weight: 600;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
} .mdh-featured-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
position: relative;
z-index: 1;
} .mdh-featured-card {
background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: 3px solid rgba(255, 255, 255, 0.2);
position: relative;
}
.mdh-featured-card:hover {
transform: translateY(-15px) scale(1.05);
box-shadow: 0 25px 60px rgba(255, 255, 255, 0.3);
border-color: white;
} .mdh-featured-position-1 {
border-color: #FFD700; }
.mdh-featured-position-1:hover {
box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
border-color: #FFD700;
}
.mdh-featured-position-2 {
border-color: #C0C0C0; }
.mdh-featured-position-2:hover {
box-shadow: 0 25px 60px rgba(192, 192, 192, 0.5);
border-color: #C0C0C0;
}
.mdh-featured-position-3 {
border-color: #CD7F32; }
.mdh-featured-position-3:hover {
box-shadow: 0 25px 60px rgba(205, 127, 50, 0.5);
border-color: #CD7F32;
} .mdh-featured-badge {
position: absolute;
top: 15px;
left: 15px;
z-index: 3;
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
color: #000;
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
}
.mdh-featured-position-1 .mdh-featured-badge {
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
animation: badge-pulse-gold 2s infinite;
}
.mdh-featured-position-2 .mdh-featured-badge {
background: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 100%);
}
.mdh-featured-position-3 .mdh-featured-badge {
background: linear-gradient(135deg, #E6A77D 0%, #CD7F32 100%);
}
@keyframes badge-pulse-gold {
0%, 100% {
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
}
50% {
box-shadow: 0 4px 25px rgba(255, 215, 0, 1);
}
} .mdh-featured-link {
text-decoration: none;
color: inherit;
display: block;
} .mdh-featured-image {
position: relative;
width: 100%;
padding-bottom: 120%;
overflow: hidden;
background: #1a1a1a;
}
.mdh-featured-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mdh-featured-card:hover .mdh-featured-image img {
transform: scale(1.15);
} .mdh-featured-live-badge {
position: absolute;
top: 15px;
right: 15px;
z-index: 3;
background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
color: white;
padding: 10px 18px;
border-radius: 25px;
font-size: 13px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 1.5px;
box-shadow: 0 4px 20px rgba(0, 230, 118, 0.6);
display: flex;
align-items: center;
gap: 8px;
animation: live-pulse 1.5s infinite;
}
@keyframes live-pulse {
0%, 100% {
box-shadow: 0 4px 20px rgba(0, 230, 118, 0.6);
}
50% {
box-shadow: 0 4px 30px rgba(0, 230, 118, 1);
}
} .mdh-featured-info {
padding: 25px;
background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}
.mdh-featured-name {
margin: 0 0 15px 0;
font-size: 24px;
font-weight: 800;
color: #ffffff;
text-align: center;
line-height: 1.2;
}
.mdh-featured-age {
font-size: 18px;
font-weight: 400;
color: #ff559b;
margin-left: 5px;
}
.mdh-featured-languages {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 20px;
} .mdh-featured-cta {
margin-top: 20px;
}
.mdh-featured-btn {
width: 100%;
padding: 18px 25px;
background: linear-gradient(135deg, #ff559b 0%, #ff0066 100%);
border: none;
border-radius: 30px;
font-size: 16px;
font-weight: 800;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 6px 25px rgba(255, 85, 155, 0.5);
}
.mdh-featured-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 35px rgba(255, 85, 155, 0.8);
background: linear-gradient(135deg, #ff0066 0%, #ff559b 100%);
}
.mdh-featured-btn:active {
transform: translateY(-1px);
} @media (max-width: 992px) {
.mdh-featured-grid {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.mdh-featured-title {
font-size: 32px;
}
.mdh-featured-name {
font-size: 20px;
}
.mdh-featured-btn {
padding: 14px 20px;
font-size: 14px;
}
}
@media (max-width: 640px) {
.mdh-featured-container {
padding: 30px 15px;
margin-bottom: 40px;
}
.mdh-featured-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.mdh-featured-title {
font-size: 28px;
letter-spacing: 2px;
}
.mdh-featured-subtitle {
font-size: 16px;
}
.mdh-featured-card {
max-width: 400px;
margin: 0 auto;
}
}.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-blink 1s ease-in-out infinite;
}
@keyframes vx-blink {
0%, 100% {
opacity: 1;
box-shadow: 0 2px 8px rgba(0, 200, 83, 0.4);
}
50% {
opacity: 0.6;
box-shadow: 0 2px 20px rgba(0, 200, 83, 0.8);
}
} .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 0 12px 0;
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
} .vx-plug2025-button {
display: inline-block;
background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
color: #fff !important;
font-size: 13px;
font-weight: 600;
padding: 8px 20px;
border-radius: 25px;
text-transform: uppercase;
letter-spacing: 0.5px;
transition: all 0.3s ease;
box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
margin-top: 5px;
}
.vx-plug2025-card:hover .vx-plug2025-button {
background: linear-gradient(135deg, #c2185b 0%, #7b1fa2 100%);
box-shadow: 0 5px 15px rgba(233, 30, 99, 0.5);
transform: translateY(-2px);
} .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;
}
.vx-plug2025-button {
font-size: 11px;
padding: 6px 14px;
}
} @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;
}
.vx-plug2025-button {
box-shadow: 0 3px 10px rgba(233, 30, 99, 0.5);
}
} .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;
}