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

body {
    font-family: 'Montserrat', sans-serif;
    /* Light gray background matching the print */
    background-color: #eef1f4; 
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.main-wrapper {
    width: 100%;
    max-width: 480px; /* Mobile first structure */
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.warning-icon {
    font-size: 24px;
}

.top-alert h1 {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.main-headline {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.progress-wrapper {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.progress-track {
    width: 100%;
    height: 14px;
    background-color: #d1d5db; /* Light gray track */
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 96%;
    background-color: #d81b60; /* Vibrant pinkish red */
    border-radius: 20px;
    /* Optional small animation */
    animation: loadProgress 1.5s ease-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 96%; }
}

.progress-fill-98 {
    height: 100%;
    width: 98%;
    background-color: #d81b60; /* Vibrant pinkish red */
    border-radius: 20px;
    animation: loadProgress98 1.5s ease-out forwards;
}

@keyframes loadProgress98 {
    0% { width: 0%; }
    100% { width: 98%; }
}

.progress-fill-99 {
    height: 100%;
    width: 99%;
    background-color: #d81b60; /* Vibrant pinkish red */
    border-radius: 20px;
    animation: loadProgress99 1.5s ease-out forwards;
}

@keyframes loadProgress99 {
    0% { width: 0%; }
    100% { width: 99%; }
}

.instruction-text {
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.video-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Portrait orientation for VSL if it's like a TikTok/Reels/Shorts format (9:16) */
@media (max-width: 480px) {
    .video-container {
        /* aspect-ratio: 9 / 16;  Uncomment if you want default portrait on mobile */
    }
}

.vsl-placeholder {
    color: #475569;
}

.vsl-placeholder p {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
}

.vsl-placeholder small {
    font-size: 12px;
    line-height: 1.4;
    display: block;
}
