:root {
    --bg-pink: #FFEBF0;
    --text-black: #1a1a1a;
    --text-grey: #555555;
    --text-green: #375238;
    --accent-pink: #FF99AA;
    --dark-pink: #FF69B4;
    --badge-bg: #FFC0CB;
    --card-bg: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-pink);
    color: var(--text-black);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-image-container {
    margin-bottom: 20px;
}

.header-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* If using a square image, this makes it circle, likely need adjustments for full body/cutout */
    object-fit: cover;
    /* Simulate the aura */
    box-shadow: 0 0 40px 10px rgba(255, 105, 180, 0.3);
}

/* Adjust image to be more like cutout if possible, for now circle is safe fallback */


.text-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.text-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 5px 0 20px 0;
    line-height: 1.2;
}

.pink-dot {
    color: var(--accent-pink);
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: var(--text-green);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.arrow-divider {
    margin: 10px 0 30px;
    transform: rotate(10deg);
}

.arrow-divider svg {
    width: 50px;
    height: auto;
    stroke: var(--text-green);
}

/* Offer Card */
.offer-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.icon-check {
    background: #FFF0F5;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 2px;
    border: 1px solid #FFC0CB;
}

.benefit-text strong {
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.badge {
    background: var(--accent-pink);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 800;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    display: inline-block;
}

.benefit-text p {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.pricing {
    font-size: 1.2rem;
    font-weight: 800;
    color: #aaa;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
}

.final-price {
    color: var(--accent-pink);
    font-size: 1.3rem;
}

.cta-button {
    background: linear-gradient(180deg, #FF99AA 0%, #FF69B4 100%);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    width: 100%;
    transition: transform 0.2s;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-button:hover {
    transform: scale(1.02);
}

.payment-methods {
    margin-top: 20px;
    font-size: 0.7rem;
    color: #888;
}

.payment-methods .logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    align-items: center;
    opacity: 0.6;
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 2rem;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }

    .offer-card {
        padding: 20px;
    }
}

/* Urgency Section */
.urgency-section {
    margin-top: 20px;
    width: 100%;
}

.urgency-text {
    color: #ff4757;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 0 10px 0;
    animation: pulse 2s infinite;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #ffe0e6;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b81, #ff4757);
    width: 70%;
    /* Matches initial 7/10 spots */
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}