/* ==========================================================
   PROTEINVERSE — Coming Soon Page v2.0
   Premium gym energy meets luxury brand
   ========================================================== */

:root {
    --pv-bg: #0a0a0a;
    --pv-fg: #ffffff;
    --pv-fg-muted: #a3a3a3;
    --pv-card: #141414;
    --pv-border: #2a2a2a;
    --pv-primary: hsl(42, 90%, 50%);
    --pv-primary-light: hsl(42, 90%, 60%);
    --pv-primary-dark: hsl(42, 90%, 40%);
    --pv-green: hsl(160, 60%, 45%);
    --pv-orange: hsl(25, 95%, 55%);
    --pv-teal: hsl(185, 65%, 45%);
    --pv-coral: hsl(350, 70%, 60%);
    --pv-gold: hsl(42, 90%, 55%);
    --pv-lime: hsl(90, 55%, 50%);
    --pv-font-heading: 'Saira Condensed', sans-serif;
    --pv-font-body: 'Inter', sans-serif;
    --pv-radius: 12px;
    --pv-glow: 0 0 30px hsla(42, 90%, 50%, 0.3);
    --pv-glow-sm: 0 0 15px hsla(42, 90%, 50%, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.pv-coming-soon {
    background: var(--pv-bg);
    color: var(--pv-fg);
    font-family: var(--pv-font-body);
    min-height: 100vh;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

/* ── Lucky Background (Desktop) ── */
.pv-cs-bg-image {
    position: fixed;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: url('../images/lucky/lucky-studio-web.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
    mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 80%),
        linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%);
    -webkit-mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 80%),
        linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

/* ── Floating Particles ── */
.pv-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.pv-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--pv-primary);
    opacity: 0;
    animation: pv-particle-float linear infinite;
}
.pv-particle--1 { left: 15%; width: 4px; height: 4px; animation-duration: 8s; animation-delay: 0s; }
.pv-particle--2 { left: 35%; width: 5px; height: 5px; animation-duration: 10s; animation-delay: 1s; }
.pv-particle--3 { left: 55%; width: 3px; height: 3px; animation-duration: 7s; animation-delay: 2s; }
.pv-particle--4 { left: 75%; width: 4px; height: 4px; animation-duration: 9s; animation-delay: 0.5s; }
.pv-particle--5 { left: 25%; width: 3px; height: 3px; animation-duration: 11s; animation-delay: 3s; }
.pv-particle--6 { left: 65%; width: 5px; height: 5px; animation-duration: 8s; animation-delay: 4s; }
.pv-particle--7 { left: 45%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 1.5s; }
.pv-particle--8 { left: 85%; width: 4px; height: 4px; animation-duration: 9s; animation-delay: 2.5s; }

@keyframes pv-particle-float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    8% { opacity: 0.9; transform: translateY(85vh) scale(1); }
    30% { opacity: 0.7; }
    60% { opacity: 0.8; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) scale(0.5); opacity: 0; }
}

/* ── Background Glows ── */
.pv-bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.pv-bg-glow--1 {
    width: 500px; height: 500px;
    top: -10%; left: -5%;
    background: radial-gradient(circle, hsla(42, 90%, 50%, 0.15) 0%, transparent 70%);
    animation: pv-float 8s ease-in-out infinite;
}
.pv-bg-glow--2 {
    width: 400px; height: 400px;
    bottom: -5%; right: -5%;
    background: radial-gradient(circle, hsla(160, 60%, 45%, 0.1) 0%, transparent 70%);
    animation: pv-float 10s ease-in-out infinite reverse;
}
.pv-bg-glow--3 {
    width: 350px; height: 350px;
    top: 30%; left: 30%;
    background: radial-gradient(circle, hsla(42, 90%, 50%, 0.08) 0%, transparent 70%);
    animation: pv-float 12s ease-in-out infinite;
}

.pv-bg-noise {
    position: fixed;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

@keyframes pv-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* ── Wrapper ── */
.pv-cs-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ── Header / Logo ── */
.pv-cs-header {
    width: 100%;
    padding: 0.5rem 0 1rem;
    text-align: center;
    animation: pv-fadeDown 0.8s ease-out;
}
.pv-cs-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pv-cs-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

/* ── Main Content ── */
.pv-cs-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0.5rem 0;
}

/* ── Tag ── */
.pv-cs-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--pv-green);
    margin-bottom: 1.5rem;
    animation: pv-fadeUp 0.8s ease-out 0.2s both;
}
.pv-cs-tag-dot {
    width: 8px; height: 8px;
    background: var(--pv-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--pv-green), 0 0 16px var(--pv-green);
    animation: pv-pulse-glow 2s ease-in-out infinite;
}
@keyframes pv-pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--pv-green), 0 0 16px var(--pv-green); }
    50% { opacity: 0.5; box-shadow: 0 0 4px var(--pv-green); }
}

/* ── Headline ── */
.pv-cs-headline {
    font-family: var(--pv-font-heading);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 0.75rem;
    animation: pv-fadeUp 0.8s ease-out 0.3s both;
}
.pv-cs-line1 {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--pv-fg);
}
.pv-cs-line2 {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--pv-fg);
}
.pv-text-gradient-health {
    background: linear-gradient(135deg, var(--pv-green), var(--pv-teal), var(--pv-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Animated Accent Line ── */
.pv-cs-accent-line {
    width: 120px;
    height: 2px;
    background: hsla(42, 90%, 50%, 0.15);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: pv-fadeUp 0.8s ease-out 0.35s both;
}
.pv-cs-accent-scan {
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--pv-primary), var(--pv-primary-light), transparent);
    border-radius: 2px;
    animation: pv-scan 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--pv-primary), 0 0 20px hsla(42, 90%, 50%, 0.3);
}
@keyframes pv-scan {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* ── Description ── */
.pv-cs-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pv-fg-muted);
    max-width: 560px;
    margin-bottom: 2rem;
    animation: pv-fadeUp 0.8s ease-out 0.4s both;
}
.pv-cs-desc strong {
    color: var(--pv-gold);
    font-weight: 600;
}

/* ── Countdown ── */
.pv-cs-countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: pv-fadeUp 0.8s ease-out 0.5s both;
}
.pv-cs-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: hsla(42, 90%, 50%, 0.04);
    border: 1px solid hsla(42, 90%, 50%, 0.15);
    border-radius: var(--pv-radius);
    padding: 0.75rem 1rem;
    min-width: 72px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s, box-shadow 0.3s;
    animation: pv-countdown-glow 3s ease-in-out infinite;
}
.pv-cs-countdown-item:nth-child(1) { animation-delay: 0s; }
.pv-cs-countdown-item:nth-child(3) { animation-delay: 0.5s; }
.pv-cs-countdown-item:nth-child(5) { animation-delay: 1s; }
.pv-cs-countdown-item:nth-child(7) { animation-delay: 1.5s; }

@keyframes pv-countdown-glow {
    0%, 100% { border-color: hsla(42, 90%, 50%, 0.15); box-shadow: none; }
    50% { border-color: hsla(42, 90%, 50%, 0.35); box-shadow: 0 0 12px hsla(42, 90%, 50%, 0.1); }
}

.pv-cs-countdown-num {
    font-family: var(--pv-font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--pv-fg);
    line-height: 1;
}
.pv-cs-countdown-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pv-primary);
    margin-top: 0.25rem;
    font-weight: 600;
}
.pv-cs-countdown-sep {
    font-family: var(--pv-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pv-primary);
    opacity: 0.4;
    animation: pv-blink 1s step-end infinite;
}
@keyframes pv-blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.1; }
}

/* ── Email Form ── */
.pv-cs-form {
    width: 100%;
    max-width: 480px;
    margin-bottom: 2rem;
    animation: pv-fadeUp 0.8s ease-out 0.6s both;
}
.pv-cs-form-inner {
    display: flex;
    gap: 0;
    border-radius: var(--pv-radius);
    border: 1px solid hsla(42, 90%, 50%, 0.2);
    background: hsla(0, 0%, 100%, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.pv-cs-form-inner:focus-within {
    border-color: var(--pv-primary);
    box-shadow: 0 0 20px hsla(42, 90%, 50%, 0.15), 0 0 40px hsla(42, 90%, 50%, 0.05);
}
.pv-cs-input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--pv-fg);
    font-family: var(--pv-font-body);
    font-size: 0.9rem;
}
.pv-cs-input::placeholder {
    color: hsla(0, 0%, 100%, 0.3);
}
.pv-cs-btn {
    padding: 0.9rem 1.75rem;
    background: var(--pv-primary);
    color: var(--pv-bg);
    border: none;
    font-family: var(--pv-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 0 20px hsla(42, 90%, 50%, 0.3);
}
.pv-cs-btn:hover {
    background: var(--pv-primary-light);
    box-shadow: 0 0 30px hsla(42, 90%, 50%, 0.5);
    transform: translateY(-1px);
}
.pv-cs-btn:active { transform: translateY(0); }
.pv-cs-btn-loader {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid var(--pv-bg);
    border-top-color: transparent;
    border-radius: 50%;
    animation: pv-spin 0.6s linear infinite;
}
@keyframes pv-spin { to { transform: rotate(360deg); } }
.pv-cs-form-msg {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    min-height: 1.2em;
}
.pv-cs-form-msg.pv-success { color: var(--pv-green); }
.pv-cs-form-msg.pv-error { color: var(--pv-coral); }

/* ── Trust Badges ── */
.pv-cs-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    animation: pv-fadeUp 0.8s ease-out 0.7s both;
}
.pv-cs-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--pv-fg-muted);
}
.pv-cs-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pv-green);
    filter: drop-shadow(0 0 4px hsla(160, 60%, 45%, 0.4));
    animation: pv-icon-breathe 3s ease-in-out infinite;
}
.pv-cs-trust-icon--gold {
    color: var(--pv-gold);
    filter: drop-shadow(0 0 4px hsla(42, 90%, 55%, 0.4));
}
.pv-cs-trust-icon--teal {
    color: var(--pv-teal);
    filter: drop-shadow(0 0 4px hsla(185, 65%, 45%, 0.4));
}
.pv-cs-trust-icon--coral {
    color: var(--pv-coral);
    filter: drop-shadow(0 0 4px hsla(350, 70%, 60%, 0.4));
}
@keyframes pv-icon-breathe {
    0%, 100% { filter: drop-shadow(0 0 4px currentColor); }
    50% { filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 12px currentColor); }
}
.pv-cs-trust-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--pv-primary);
    opacity: 0.3;
}

/* ── Google Reviews Badge ── */
.pv-cs-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--pv-radius);
    background: hsla(42, 90%, 50%, 0.04);
    border: 1px solid hsla(42, 90%, 50%, 0.12);
    animation: pv-fadeUp 0.8s ease-out 0.75s both;
}
.pv-cs-google-icon {
    flex-shrink: 0;
}
.pv-cs-reviews-stars {
    display: flex;
    gap: 1px;
    filter: drop-shadow(0 0 3px hsla(45, 93%, 57%, 0.4));
}
.pv-cs-reviews-rating {
    font-family: var(--pv-font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #FBBF24;
}
.pv-cs-reviews-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--pv-fg-muted);
}
.pv-cs-reviews-source {
    font-size: 0.7rem;
    color: var(--pv-fg-muted);
    opacity: 0.6;
}

/* ── As Featured In ── */
.pv-cs-press {
    text-align: center;
    animation: pv-fadeUp 0.8s ease-out 0.8s both;
    padding: 1.25rem 2rem;
    border-top: 1px solid hsla(42, 90%, 50%, 0.08);
    width: 100%;
    max-width: 600px;
}
.pv-cs-press-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--pv-primary);
    opacity: 0.7;
    margin-bottom: 0.75rem;
}
.pv-cs-press-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.pv-cs-press-item {
    font-family: var(--pv-font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--pv-fg);
    opacity: 0.55;
    transition: opacity 0.3s, color 0.3s;
    text-decoration: none;
}
.pv-cs-press-item:hover {
    opacity: 1;
    color: var(--pv-primary);
    text-decoration: none;
}
.pv-cs-press-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--pv-primary);
    opacity: 0.5;
}

/* ── Footer ── */
.pv-cs-footer {
    width: 100%;
    padding: 1.5rem 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: pv-fadeUp 0.8s ease-out 0.9s both;
}
.pv-cs-social {
    display: flex;
    gap: 0.75rem;
}
.pv-cs-social-link {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid hsla(42, 90%, 50%, 0.15);
    color: var(--pv-fg-muted);
    background: hsla(0, 0%, 100%, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s;
    text-decoration: none;
}
.pv-cs-social-link:hover {
    color: var(--pv-primary);
    border-color: hsla(42, 90%, 50%, 0.4);
    box-shadow: 0 0 15px hsla(42, 90%, 50%, 0.2);
    transform: translateY(-3px);
}
.pv-cs-social-link--wa:hover {
    color: #25D366;
    border-color: hsla(142, 70%, 49%, 0.4);
    box-shadow: 0 0 15px hsla(142, 70%, 49%, 0.2);
}
.pv-cs-footer-text { text-align: center; }
.pv-cs-footer-text p {
    font-size: 0.8rem;
    color: var(--pv-fg-muted);
    line-height: 1.5;
}
.pv-cs-copy {
    font-size: 0.7rem !important;
    opacity: 0.5;
    margin-top: 0.25rem;
}

/* ── Animations ── */
@keyframes pv-fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pv-fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile Lucky Photo (inline) ── */
@media (min-width: 769px) {
    .pv-cs-mobile-lucky { display: none; }
    .pv-cs-mobile-logo { display: none; }
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
    .pv-cs-bg-image { display: none; }
    .pv-cs-wrapper {
        padding: 0 1.25rem 1rem;
        min-height: auto;
    }
    .pv-cs-header {
        display: none;
    }
    .pv-cs-logo-img {
        height: 48px;
    }
    .pv-cs-main {
        justify-content: flex-start;
        padding-top: 0;
    }

    /* Mobile Lucky photo */
    .pv-cs-mobile-lucky {
        display: block;
        width: 100vw;
        margin: 0 -1.25rem 1.25rem;
        position: relative;
        overflow: hidden;
        border-radius: 0;
        max-height: 340px;
    }
    .pv-cs-mobile-lucky img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        object-position: center top;
        display: block;
    }
    .pv-cs-mobile-lucky::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(to top, var(--pv-bg) 0%, hsla(0,0%,4%,0.6) 25%, transparent 50%),
            radial-gradient(ellipse at 95% 95%, var(--pv-bg) 0%, transparent 50%);
        z-index: 1;
    }
    /* Golden edge glow on photo */
    .pv-cs-mobile-lucky::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--pv-primary), transparent);
        box-shadow: 0 0 15px var(--pv-primary), 0 0 30px hsla(42, 90%, 50%, 0.2);
        z-index: 2;
    }

    .pv-cs-mobile-logo {
        display: block;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    .pv-cs-mobile-logo img {
        height: 52px;
        width: auto;
    }
    .pv-cs-tag { margin-bottom: 1rem; }
    .pv-cs-headline { margin-bottom: 0.5rem; }
    .pv-cs-line1,
    .pv-cs-line2 { font-size: clamp(2rem, 9vw, 3rem); }
    .pv-cs-accent-line { margin-bottom: 1rem; }
    .pv-cs-desc {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    .pv-cs-countdown { gap: 0.35rem; margin-bottom: 1.25rem; }
    .pv-cs-countdown-item {
        min-width: 60px;
        padding: 0.6rem 0.5rem;
    }
    .pv-cs-countdown-num { font-size: 1.5rem; }
    .pv-cs-form { margin-bottom: 1.25rem; }
    .pv-cs-form-inner { flex-direction: column; }
    .pv-cs-input { padding: 1rem 1.25rem; text-align: center; }
    .pv-cs-btn { padding: 1rem; }

    .pv-cs-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    .pv-cs-trust-sep { display: none; }
    .pv-cs-trust-item {
        font-size: 0.72rem;
        justify-content: center;
        background: hsla(0, 0%, 100%, 0.02);
        border: 1px solid hsla(42, 90%, 50%, 0.08);
        border-radius: 8px;
        padding: 0.5rem 0.4rem;
    }

    .pv-cs-reviews {
        padding: 0.6rem 1rem;
        gap: 0.35rem;
    }
    .pv-cs-reviews-rating { font-size: 1.1rem; }
    .pv-cs-reviews-text { font-size: 0.72rem; }
    .pv-cs-press { padding: 0.75rem 0; }
    .pv-cs-press-logos { gap: 0.5rem; }
    .pv-cs-press-item { font-size: 0.7rem; }
    .pv-cs-footer { padding-top: 0.5rem; }
}

@media (max-width: 380px) {
    .pv-cs-line1,
    .pv-cs-line2 { font-size: 1.8rem; }
    .pv-cs-countdown-item {
        min-width: 52px;
        padding: 0.5rem 0.4rem;
    }
    .pv-cs-countdown-num { font-size: 1.25rem; }
    .pv-cs-mobile-lucky,
    .pv-cs-mobile-lucky img {
        max-height: 240px;
        height: 240px;
    }
}
