body {
    font-family: 'Inter', sans-serif;
    background-color: #fdfbf7;
    color: #4a4a4a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

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

.success-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e6d2;
    max-width: 500px;
    margin: 0 auto;
}

.alert-card {
    border-top: 5px solid #d97706;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fef3c7;
    color: #d97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.alert-icon {
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

h1 {
    font-family: 'Lora', serif;
    margin-bottom: 10px;
    font-size: 2rem;
    color: #1f2937;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 30px;
}

.offer-box {
    background: #fffbeb;
    border: 1px dashed #d97706;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.offer-box h3 {
    color: #b45309;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
}

.new-price {
    color: #059669;
    font-size: 1.8rem;
    font-weight: 700;
}

.scarcity {
    font-size: 0.8rem;
    color: #d97706;
    font-style: italic;
}

.info-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.info-box h3 {
    color: #0284c7;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #d97706;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    margin-bottom: 15px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #b45309;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(217, 119, 6, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
}

.no-thanks a {
    color: #9ca3af;
    font-size: 0.85rem;
    text-decoration: none;
}

.no-thanks a:hover {
    color: #6b7280;
}