/* Utils */
body.dark-theme {
    background-color: #0d0d0d;
    color: #fff;
}

body.dark-theme .container {
    background-color: transparent;
    box-shadow: none;
}

body.dark-theme .logo-container img {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 480px; /* Mobile focused */
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo-container {
    text-align: center;
    margin: 20px 0;
}

.logo-container img {
    max-height: 80px;
    max-width: 100%;
}

/* VSL Overlay */
.vsl-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 9:16 aspect ratio (16/9 = 1.777) */
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.huge-play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.6);
    z-index: 20;
    cursor: pointer;
}

.huge-play-text {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
    /* Borda preta em volta da letra parecida com a imagem */
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9), -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
    line-height: 1.1;
    animation: titleBounce 0.8s infinite alternate;
    width: 90%;
}

.huge-play-btn {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(255,255,255,0.2);
    animation: hardcoreZoom 0.6s infinite alternate ease-in-out;
}

.huge-play-btn svg {
    width: 60px;
    height: 60px;
    fill: #000; /* Black triangle */
    margin-left: 10px; /* Visual center adjustment */
}

@keyframes hardcoreZoom {
    0% { transform: scale(0.95); box-shadow: 0 0 0 5px rgba(255,255,255,0.5); }
    100% { transform: scale(1.15); box-shadow: 0 0 0 25px rgba(255,255,255,0.1); }
}

@keyframes titleBounce {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-5px) scale(1.05); }
}

/* CTA Buttons */
.cta-btn {
    display: none; /* Hidden by default for VSL delay */
    width: 100%;
    background-color: #00c853;
    color: #fff;
    text-align: center;
    padding: 18px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.cta-btn.active {
    display: block;
    animation: pulse 2s infinite;
}

/* Quiz Styles */
.progress-container {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #111;
    width: 10%;
    transition: width 0.4s ease;
}

.quiz-question {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    background-color: #e6e6e6; /* Gray background */
    border: 2px solid #a4a4a4;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s, transform 0.1s;
}

.quiz-option:hover, .quiz-option:active {
    background-color: #d0d0d0;
    transform: scale(0.98);
}

.quiz-option .icon {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Processing View */
.processing-container {
    display: none;
    flex-direction: column;
    margin-top: 20px;
}

.processing-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #444;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
}

.processing-step.show {
    opacity: 1;
    transform: translateY(0);
}

.processing-info {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}

.loading-percent {
    text-align: right;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px;
}

.warning-text {
    background-color: #ffff00;
    padding: 2px 5px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.quiz-footer {
    margin-top: 30px;
    text-align: center;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 4px 20px rgba(0, 200, 83, 0.6); }
    100% { transform: scale(1); }
}

@media (min-width: 481px) {
    body { background-color: #f5f5f5; }
    body.dark-theme { background-color: #050505; }
    .container {
        background-color: #fff;
        box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }
    body.dark-theme .container {
        background-color: transparent;
    }
}
