* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; }

.vira-mm-page {
    position: fixed; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    display: flex; align-items: center; justify-content: center;
    font-family: 'IRANSans', Tahoma, Arial, sans-serif;
    direction: rtl;
}
.vira-mm-overlay {
    position: absolute; inset: 0;
    background: rgba(15,23,42,0.45);
    z-index: 1;
}
.vira-mm-content {
    position: relative; z-index: 2;
    text-align: center; padding: 36px 28px; max-width: 620px; width: 90%;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(15,23,42,0.15);
}
.vira-mm-logo { margin-bottom: 20px; }
.vira-mm-logo img { max-height: 150px; width: auto; }
.vira-mm-title {
    font-size: clamp(20px, 4vw, 28px); font-weight: 800; color: #1e293b; margin-bottom: 10px;
}
.vira-mm-desc {
    font-size: clamp(13px, 2vw, 15px); color: #475569; margin-bottom: 24px;
    line-height: 1.8;
}
.vira-mm-countdown {
    display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px;
}
.vira-mm-cd-item {
    background: rgba(15,23,42,0.04); border: 1px solid rgba(15,23,42,0.08);
    border-radius: 16px; padding: 14px 18px; min-width: 80px; text-align: center;
}
.vira-mm-cd-num { display: block; font-size: 30px; font-weight: 800; color: #1e293b; line-height: 1.2; }
.vira-mm-cd-label { font-size: 11px; font-weight: 500; color: #64748b; margin-top: 4px; }
.vira-mm-quotes { min-height: 28px; }
.vira-mm-quote {
    font-size: 13px; color: #475569; font-style: italic;
    animation: vira-mm-fade-in 0.8s ease;
}
@keyframes vira-mm-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
    .vira-mm-content { padding: 24px 16px; }
    .vira-mm-cd-item { min-width: 64px; padding: 10px 12px; }
    .vira-mm-cd-num { font-size: 24px; }
}