:root {
    --bg-color: #F3F4F6;
    --card-bg: #FFFFFF;
    --primary-text: #111111;
    --secondary-text: #4B5563;
    
    --accent-green: #15803D;
    
    --accent-green-hover: #15803D;
    --option-bg: #FEF2F2;
    
    --option-border: #EADEDE;
    
    --option-shadow: #D8CCCC;
    
    --option-text: #111111;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--primary-text);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    
    background-color: #E2E8F0;
    
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background-color: #15803D;
    
    width: 0%;
    transition: width 0.3s ease;
}

.app-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    
    padding-top: 30px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
}


.quiz-header {
    display: none;
}

.logo {
    display: none;
}


.quiz-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
    padding-top: 10px;
    
}

.question-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-text {
    font-size: 1.5rem;
    
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-text);
    line-height: 1.3;
}


.subtext {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 1rem;
    
    font-weight: 400;
}


.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    
    width: 100%;
}


.options-grid.two-columns {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}


.option-btn {
    background-color: var(--option-bg);
    border: 2px solid var(--option-border);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    
    text-align: left;
    color: var(--option-text);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: transform 0.1s, background-color 0.2s;
    
    box-shadow: 0px 4px 0px 0px var(--option-shadow);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
    gap: 12px;
    
    margin-bottom: 0px;
    
}




.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    text-align: center;
    padding: 20px;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.loading-bar-container {
    width: 100%;
    max-width: 300px;
    height: 10px;
    background-color: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--accent-green);
    border-radius: 10px;
    transition: width 0.1s linear;
}


.option-btn::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #CBD5E1;
    border-radius: 50%;
    
    background: white;
    flex-shrink: 0;
    transition: all 0.2s;
}

.option-btn.selected::before {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    
}

.option-btn:hover {
    transform: translateY(1px);
    box-shadow: 0px 3px 0px 0px var(--option-shadow);
    background-color: #FFF5F5;
}

.option-btn:active,
.option-btn.selected {
    transform: translateY(4px);
    box-shadow: 0px 0px 0px 0px var(--option-shadow);
    
    border-color: #FECACA;
    
    background-color: #FEF2F2;
}


.option-btn.multi-select::after {
    display: none;
}


.cta-button {
    background-color: var(--accent-green);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    width: 100%;
    margin-top: 24px;
    box-shadow: 0px 4px 0px 0px #15803D;
    
    transition: transform 0.1s;
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: none;
}


.options-grid.book-choice {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.book-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    height: 100%;
    justify-content: flex-start;
}

.book-cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background-color: #E2E8F0;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    
}

.book-cover-placeholder img,
.book-cover-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    display: block;
}


.sales-page {
    background-color: white;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.sales-page.hidden {
    display: none;
}

.hero-header {
    background-color: #F97316;
    
    color: white;
    padding: 30px 20px;
    border-radius: 0 0 24px 24px;
    text-align: center;
    margin-bottom: 30px;
}

.hero-header h1 {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.2;
}

.sales-content {
    padding: 0 20px 40px;
}

.vsl-wrapper {
    margin-bottom: 30px;
}

.benefits-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--primary-text);
}

.check-icon {
    background-color: #DCFCE7;
    
    color: #15803D;
    
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.testimonial-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #FBBF24;
    
    margin-bottom: 8px;
}

.offer-box {
    background-color: #F3F4F6;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin: 40px 0;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin: 10px 0;
    display: block;
}

.guarantee-seal {
    width: 80px;
    margin: 20px auto;
    display: block;
}


.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 16px 0;
}

.faq-question {
    font-weight: 600;
    color: #111;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding: 0;
    font-size: 1rem;
    cursor: pointer;
}


.faq-answer {
    padding-top: 12px;
    color: #4B5563;
    line-height: 1.5;
    display: none;
}



.start-page {
    text-align: center;
    padding: 20px 0 60px;
    
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
    gap: 20px;
    
}


.start-content-wrapper {
    flex-grow: 0;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    
}

.main-headline {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0;
    
    margin-bottom: 8px;
}

.sub-headline {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
    line-height: 1.3;
}

.description-text {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight-box {
    background-color: #FECACA;
    color: #991B1B;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.mockup-container {
    margin: 0;
    width: 100%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    
    flex-shrink: 1;
    min-height: 0;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-img {
    max-width: 100%;
    max-height: 35vh;
    
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#startBtn {
    margin-top: 15px;
    margin-bottom: 20px;
    
    width: 100%;
    padding: 18px 20px;
    
    flex-shrink: 0;
    
}





.result-box {
    background-color: #F97316;
    
    border-radius: 12px;
    padding: 24px 20px;
    
    text-align: center;
    margin-top: 20px;
    
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
    max-width: 85%;
    
    margin-left: auto;
    margin-right: auto;
}

.result-title {
    color: #111827;
    
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
}


.sales-intro {
    margin-bottom: 30px;
}

.intro-bold {
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    font-size: 1rem;
}

.intro-text {
    color: #374151;
    margin-bottom: 20px;
    font-size: 1rem;
}

.checklist-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-emoji {
    font-size: 1.2rem;
    line-height: 1;
}

.check-item span {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}


.vsl-headline {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    line-height: 1.4;
}

.vsl-wrapper {
    margin-bottom: 40px;
}

.vsl-container-resume {
    background-color: #84CC16;
    
    border-radius: 8px;
    height: 220px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    text-align: center;
}

.vsl-resume-text {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.vsl-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 280px;
}

.vsl-btn-resume {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.vsl-btn-restart {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    opacity: 0.9;
}


.welcome-section {
    text-align: center;
    margin-bottom: 40px;
}

.highlight-block {
    margin-bottom: 20px;
    line-height: 1.6;
}

.highlight-yellow {
    background-color: #FEF08A;
    
    padding: 2px 6px;
    font-weight: 700;
    color: #111;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.sub-title-bold {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
}

.welcome-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.lusty-purple {
    color: #111;
    
}

.books-lilac {
    color: #A855F7;
    
}

.collage-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.value-text-block {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.value-text {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.5;
}

.emotional-text {
    font-size: 0.95rem;
    color: #4B5563;
    font-style: italic;
    margin-bottom: 24px;
}

.access-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    
    text-transform: uppercase;
    margin-bottom: 20px;
}

.comparison-intro {
    text-align: center;
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 30px;
    background-color: #F3F4F6;
    padding: 16px;
    border-radius: 8px;
}

.comparison-container {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    
    gap: 0;
}


.comp-column {
    padding: 24px 20px;
    text-align: center;
}

.comp-column.competitors {
    background-color: #FFF;
    border-bottom: 1px solid #E5E7EB;
}

.comp-column.lusty {
    background-color: #F0FDF4;
    
}

.comp-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 800;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.comp-badge.bad {
    background-color: #EF4444;
    
}

.comp-badge.good {
    background-color: #15803D;
    
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comp-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bad-list li {
    color: #4B5563;
}

.good-list li {
    color: #111827;
    font-weight: 500;
}

.x-icon {
    color: #EF4444;
    
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
}

.check-icon-green {
    color: #15803D;
    
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
}

.brand-logo-small {
    margin-bottom: 10px;
}

.lusty-text {
    background-color: #111;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
}


.themes-section {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-dark {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.theme-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.theme-featured-img {
    max-width: 80%;
    
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.collage-img {
    max-width: 70%;
    
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}


.testimonials-section {
    margin-bottom: 50px;
}

.testimonials-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.testimonial-card-new {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.user-avatar-green {
    width: 40px;
    height: 40px;
    background-color: #D1FAE5;
    
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}


.benefits-mockup-section {
    background-color: #F8FAFC;
    
    padding: 30px 20px 0;
    border-radius: 16px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #1F2937;
    font-weight: 500;
}

.check-box-filled {
    background-color: #15803D;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 0.9rem;
}

.mockup-side {
    text-align: center;
    margin-top: 10px;
}

.mockup-bundle-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}


.unlock-section {
    text-align: center;
    margin-bottom: 50px;
}

.unlock-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 8px;
}

.unlock-subtitle {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 30px;
}

.clean-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clean-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.check-circle-soft {
    width: 32px;
    height: 32px;
    background-color: #D1FAE5;
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.clean-card span {
    font-weight: 600;
    color: #1F2937;
    font-size: 0.95rem;
}


.scarcity-container {
    margin-bottom: 20px;
}

.scarcity-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.95rem;
    color: #6B7280;
    margin-bottom: 8px;
}

.timer-red {
    color: #EF4444;
    font-weight: 800;
}

.progress-bg {
    background-color: #E5E7EB;
    height: 10px;
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar-red {
    background-color: #EF4444;
    height: 100%;
    border-radius: 50px;
}


.offer-box-new {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.special-offer-tag {
    background-color: #E879F9;
    
    color: white;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.old-price {
    text-decoration: line-through;
    color: #9CA3AF;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.installments-text {
    font-weight: 700;
    color: #374151;
    font-size: 1.1rem;
    margin: 0;
}

.big-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #111827;
    margin: 0;
    line-height: 1;
}

.cash-price {
    color: #6B7280;
    font-weight: 600;
    margin-top: 4px;
}

.cta-button-green {
    background-color: #15803D;
    
    color: white;
    border: none;
    border-radius: 8px;
    
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.4);
    cursor: pointer;
    transition: transform 0.1s;
}

.cta-button-green:active {
    transform: scale(0.98);
}


.guarantee-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.guarantee-seal-big {
    width: 140px;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 0.95rem;
    color: #1F2937;
    line-height: 1.5;
    font-weight: 500;
}


.compare-section-new {
    padding: 40px 20px;
    background: #f5f5f5;
    margin: 30px -20px;
    
}


.compare-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.logos-left img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.logos-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-brand {
    background: #2a2a2a;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.logo-brand span {
    color: #e91e63;
}


.compare-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    
    gap: 10px;
    
    margin-bottom: 30px;
}

.compare-column {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    min-width: 0;
    
}

.column-header {
    padding: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: white;
}

.column-header.bad {
    background: #A16207;
}

.column-header.good {
    background: #15830D;
}

.compare-items {
    padding: 6px 5px;
    
}

.compare-item {
    display: flex;
    align-items: flex-start;
    padding: 2px 0;
    font-size: 10px;
    
    color: #333;
    line-height: 1.3;
    font-weight: 700;
    word-break: break-word;
    
}

.x-mark {
    color: #e74c3c;
    font-weight: 800;
    font-size: 14px;
    
    margin-right: 5px;
    
    flex-shrink: 0;
}

.check-mark {
    color: #27ae60;
    font-weight: 800;
    font-size: 14px;
    
    margin-right: 5px;
    
    flex-shrink: 0;
}



@media (max-width: 600px) {
    .options-grid.book-choice {
        gap: 12px;
        
    }

    .book-option {
        min-height: 350px;
        
        height: auto;
        
    }

    .book-cover-placeholder {
        flex-grow: 1;
        
        height: auto;
        min-height: 0;
        
    }

    .book-cover-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        
        object-position: top center;
        
    }

    .book-option-label {
        font-size: 0.9rem;
        padding: 12px 4px;
        background: #15803D;
        
        width: 100%;
        margin-top: 0;
        
        border-radius: 0 0 12px 12px;
        
    }
}


.clean-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    
    margin-top: 20px;
}

.clean-card {
    padding: 10px 14px;
    
    background-color: #F3F4F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    
    gap: 10px;
}

.clean-card span {
    font-size: 0.95rem;
    
    line-height: 1.3;
    color: #374151;
}

.check-circle-soft {
    width: 22px;
    height: 22px;
    background-color: #DCFCE7;
    color: #15803D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}


.mockup-bundle-img {
    max-width: 60%;
    margin: 0 auto;
    display: block;
}


.timer-red {
    font-weight: 800;
    color: #EF4444;
    font-family: monospace;
    
}


.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85); 
    z-index: 3000;
    display: none; 
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.exit-modal-content {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    max-width: 450px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #9CA3AF;
    cursor: pointer;
    line-height: 1;
}

.modal-header h2 {
    color: #DC2626; 
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.modal-text {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-offer {
    background-color: #FEF2F2;
    border: 2px dashed #EF4444;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 24px;
    color: #B91C1C;
    font-weight: 700;
    font-size: 1.1rem;
}


.modal-cta {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background-color: #15803D;
    color: white;
    font-weight: 800;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 0 #15803D;
    transition: transform 0.1s;
    border: none;
    cursor: pointer;
}

.modal-cta:active {
    transform: translateY(4px);
    box-shadow: none;
}

.modal-close-text {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
}
