:root {
    --bg-dark: #0a0a0f;
    --bg-card: #13131f;
    --primary: #3b82f6;
    --green: #22c55e;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.success-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.alert-card {
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    width: 40px;
    height: 40px;
}

.alert-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

h1 {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.1;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box p {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #e2e8f0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    width: 100%;
    transition: transform 0.2s;
}

.btn-whatsapp:hover {
    transform: scale(1.02);
    background: #1ebc57;
}

.offer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.offer-box h3 {
    color: #ef4444;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.price-comparison {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.new-price {
    color: #22c55e;
    font-size: 2rem;
    font-weight: 800;
}

.scarcity {
    font-size: 0.85rem;
    color: #fbbf24;
    margin-top: 10px;
}

.btn-pulse {
    display: inline-block;
    background: #22c55e;
    color: white;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 800;
    width: 100%;
    text-transform: uppercase;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 1.5s infinite;
    margin-bottom: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.no-thanks a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0.7;
}

.no-thanks a:hover {
    text-decoration: underline;
    opacity: 1;
}

.coupon-area {
    margin: 15px 0;
    text-align: center;
}

.coupon-code {
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    letter-spacing: 2px;
    margin-top: 5px;
    user-select: all;
}