.screen-section {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px 24px;
    background: none;
}

.screen-mockup {
    width: 100%;
    max-width: 600px;
}

.screen-mockup__frame {
    background: #0b0b14;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}

.screen-mockup__display {
    width: 100%;
    max-width: 600px;
    line-height: 0;
}

.screen-mockup__media {
    position: relative;
    width: 100%;
    line-height: 0;
}

.screen-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100% + 200px);
    background: url('../images/cardslcd.png') center top / contain no-repeat;
    z-index: -1;
    pointer-events: none;
}


.screen-mockup__img {
    width: 100%;
    height: auto;
    display: block;
}

.screen-mockup__img--mobile { display: none; }

@media (max-width: 768px) {
    .screen-mockup__img--desktop { display: none; }
    .screen-mockup__img--mobile { display: block; }
}

.screen-mockup__video-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: url(#lcd-screen-clip);
    -webkit-clip-path: url(#lcd-screen-clip);
    overflow: hidden;
    pointer-events: none;
}

.screen-mockup__poster {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Countdown inside screen — overlaid on the image */
.screen-countdown {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.55);
    gap: 21.21px;
    pointer-events: none;
    z-index: 3;
}

.screen-countdown__title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2.5vw, 22px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 8px;
}

.screen-countdown__timer {
    display: flex;
    gap: clamp(8px, 2vw, 24px);
    align-items: center;
}

.screen-countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.screen-countdown__num {
    font-family: 'Inter', monospace;
    font-size: clamp(22px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.screen-countdown__label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(9px, 1.2vw, 13px);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.screen-countdown__caption {
    color: rgba(255,255,255,0.85);
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 600;
    text-align: center;
    font-style: italic;
    margin-top: 16px;
}

@media (min-width: 769px) {
    .screen-mockup,
    .screen-mockup__display {
        max-width: 860px;
    }
}

@media (max-width: 768px) {
    .screen-section {
        padding: 0 12px 20px;
    }
    .screen-section::before {
        background-image: url('../images/cardmobile.png');
        top: -80px;
        height: calc(100% + 80px);
    }
    .screen-countdown { gap: 10px; }
    .screen-countdown__title { font-size: 18px; letter-spacing: 0; }
    .screen-countdown__timer { gap: 16px; }
    .screen-countdown__num { font-size: 40px; line-height: 1; }
    .screen-countdown__label { font-size: 10px; }
    .screen-countdown__caption { font-size: 19px; font-weight: 600; margin-top: 16px; }
}
