/* static/css/premium-lock.css - Premium Content Blur Lock Styles */

.premium-lock-wrapper {
    position: relative;
    margin: 2rem 0;
    display: block;
}

.premium-blur-placeholder {
    position: relative;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.premium-blur-placeholder.unlocked {
    display: none;
}

.premium-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 0.5rem;
}

.premium-real-content {
    display: none;
}

.premium-real-content.unlocked {
    display: block;
}

.lock-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.lock-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    margin-top: 0;
}

.premium-badge-header {
    background: #fef3c7;
    color: #d97706;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.code-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.code-input-group input {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    box-sizing: border-box;
}

.code-input-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.btn-unlock {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    width: 100%;
}

.btn-unlock:hover {
    background: #2563eb;
}

.btn-unlock:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.recaptcha-container {
    margin: 0.75rem 0;
    display: flex;
    justify-content: center;
}

.message-area {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    padding: 0.4rem;
    border-radius: 0.5rem;
}

.message-success {
    background: #d1fae5;
    color: #065f46;
}

.message-error {
    background: #fee2e2;
    color: #991b1b;
}

.message-info {
    background: #dbeafe;
    color: #1e40af;
}

.hidden {
    display: none !important;
}