:root {
    --wa-green: #25D366;
    --wa-dark-green: #128C7E;
    --wa-bg-light: #f4f6f9;
    --wa-text-primary: #1a1a2e;
    --wa-text-secondary: #606770;
    --wa-bg-white: #ffffff;
    --success-bg: #e6f9ed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--wa-bg-light);
    color: var(--wa-text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container Glassmorphism Feel */
.locker-container {
    width: 100%;
    max-width: 480px; 
    background: var(--wa-bg-white);
    padding: 35px 25px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    animation: slideUpFade 0.6s ease-out;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header VIP */
.header-vip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.badge-verified {
    background-color: #f0fdf4;
    color: var(--wa-dark-green);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    border: 1px solid #dcfce7;
}

.wa-logo-min { width: 50px; height: 50px; }

/* Number Card Preview (+34 631 230 ***) */
.number-preview-card {
    background-color: #f8fafc;
    border-radius: 20px;
    padding: 25px;
    margin: 25px 0 35px;
    border: 1px solid #f1f5f9;
}

.label { display: block; font-size: 12px; color: var(--wa-text-secondary); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; }
.hidden-number { font-size: 26px; font-weight: 900; color: #334155; font-family: 'Outfit', sans-serif; letter-spacing: 2px; }

h1 { font-family: 'Outfit', sans-serif; font-size: 28px; margin-bottom: 12px; font-weight: 800; }
p { font-size: 16px; color: var(--wa-text-secondary); line-height: 1.6; }

/* Buttons */
.wa-btn-unlock, .wa-btn-final {
    width: 100%;
    padding: 22px;
    border-radius: 40px;
    border: none;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    background-color: var(--wa-green);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
}

.wa-btn-unlock:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); }

.pulse-glow { animation: wa-glow 2s infinite; }
@keyframes wa-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hidden { display: none; }
.screen { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Success Screen (Phone Final) */
.success-card { background: linear-gradient(180deg, #f0fff4 0%, #ffffff 100%); padding: 35px 20px; border-radius: 20px; border: 1px solid #dcfce7; }
.success-icon { font-size: 50px; background: var(--wa-green); color: white; width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }

.phone-display-final {
    background: white;
    padding: 24px;
    border-radius: 20px;
    margin: 20px 0 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--wa-green);
    letter-spacing: 1px;
    border: 2px solid #efefef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.country-code { color: #94a3b8; opacity: 0.7; margin-right: 10px; }
.wa-small { margin-top: 20px; font-size: 11px; color: #94a3b8; font-weight: 600; }

/* Status Box */
.status-box { background-color: #f8fafc; padding: 25px; border-radius: 20px; margin-top: 25px; border: 1px dashed var(--wa-green); }
.min-spinner { width: 28px; height: 28px; border: 3px solid #e1e1e1; border-top: 3px solid var(--wa-green); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 12px; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.timer-countdown { font-size: 14px; color: var(--wa-dark-green); font-weight: 700; }

/* Offers Section */
.offer-item {
    background-color: #f7f9fa;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--wa-text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e1e4e8;
    margin-bottom: 15px;
}
.offer-label { font-weight: 700; }
.offer-btn-text { background: var(--wa-green); color: white; padding: 8px 15px; border-radius: 20px; font-size: 12px; }
