/* ========================================
   Activation Success Modal
   ======================================== */

.activation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.activation-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.activation-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    max-width: 520px;
    width: 90%;
    padding: 48px 40px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: slideUp 0.4s ease;
    text-align: center;
}

/* Success Icon */
.activation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.activation-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* Content */
.activation-modal h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.2;
}

.activation-modal p {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 32px;
    line-height: 1.6;
}

.activation-email-sent {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-left: 4px solid #667eea;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
    text-align: left;
}

.activation-email-sent strong {
    display: block;
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activation-email-sent span {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
}

/* Timer */
.activation-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 32px;
}

.activation-timer svg {
    width: 18px;
    height: 18px;
}

/* Close Button */
.activation-close-btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.2s ease;
}

.activation-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive */
@media (max-width: 600px) {
    .activation-modal-content {
        padding: 40px 28px;
        border-radius: 20px;
    }
    
    .activation-modal h2 {
        font-size: 24px;
    }
    
    .activation-modal p {
        font-size: 15px;
    }
    
    .activation-close-btn {
        padding: 14px 40px;
        font-size: 15px;
    }
}
