/* Chat lock styles */
#lockedChatContainer {
    background-color: rgba(31, 41, 55, 0.95);
    border-radius: 0.75rem;
    animation: fadeIn 0.5s ease-in-out;
}

#lockedChatContainer .fa-lock {
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.8; transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.progress-container {
    height: 10px;
    width: 100%;
    background-color: #374151;
    border-radius: 0.5rem;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #2563eb, #3b82f6);
    background-size: 300% 100%;
    animation: progressGradient 3s ease infinite;
    transition: width 0.5s ease-in-out;
}

@keyframes progressGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.requirements-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.requirement-item {
    text-align: center;
    padding: 0.75rem;
    background-color: #1f2937;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
    flex: 1;
}

.requirement-item .fa-check-circle {
    color: #10B981;
}

.requirement-item .fa-times-circle {
    color: #EF4444;
}

/* Button animation */
.refresh-btn:hover i {
    animation: spin 1s ease-in-out;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}