:root {
    --primary-color: #2563eb;
    --accent-color: #f59e0b;
    --background-color: #f8fafc;
    --card-bg: #ffffff;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

/* Header */
.header {
    text-align: center;
}

.congrats-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.subtitle strong {
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

/* Info Card */
.info-card {
    background: var(--card-bg);
    width: 100%;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.attention-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    /* Amber/Yellow for attention */
    color: #000;
    font-weight: 800;
    padding: 0.25rem 1.75rem;
    border-radius: 4px;
    /* More rectangular like the reference */
    font-size: 0.9rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
}

.info-card h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.hotmart-info p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.email-highlight {
    display: block;
    background: #f1f5f9;
    padding: 0.75rem;
    border-radius: 12px;
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px dashed #cbd5e1;
}

.hotmart-logo-container {
    display: flex;
    justify-content: center;
}

.hotmart-logo {
    max-width: 180px;
    height: auto;
}

/* Steps */
.steps-grid {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

.step-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Support Section */
.support-section {
    text-align: center;
    background: #eff6ff;
    width: 100%;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid #dbeafe;
}

.support-section p:first-child {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.support-section p:nth-child(2) {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.support-email {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.support-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    text-align: center;
    padding-bottom: 2rem;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .congrats-title {
        font-size: 2.25rem;
    }

    .container {
        padding: 1.5rem 1rem;
    }

    .info-card {
        padding: 2rem 1.25rem;
    }

    .email-highlight {
        font-size: 0.95rem;
    }
}