/* ================================================
   ENHANCED STYLES FOR NEW FEATURES
   ================================================ */

/* ---- Floating Support Options ---- */
.floating-support-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-support-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 3s ease-in-out infinite;
}

.floating-support-btn:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.floating-support-btn:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-support-btn:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---- Partner Redirect Notification ---- */
.partner-redirect-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 8px 32px rgba(255,20,147,0.4);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-redirect-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.notification-content i {
    color: var(--primary);
    font-size: 1.2rem;
}

.notification-content p {
    margin: 0;
    font-weight: 600;
}

/* ---- Success Message Box ---- */
.success-message-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 10000;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 8px 32px rgba(46,204,113,0.4);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-message-box.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.success-content i {
    font-size: 1.5rem;
}

.success-content p {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

/* ---- Locked Image Placeholders ---- */
.locked-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.locked-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.locked-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.locked-icon {
    font-size: 3rem;
    color: var(--primary);
    text-shadow: 0 4px 16px rgba(255,20,147,0.6);
    animation: pulse-lock 2s ease-in-out infinite;
}

@keyframes pulse-lock {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.locked-image-container:hover .locked-overlay {
    background: rgba(0,0,0,0.85);
}

.locked-image-container:hover .locked-icon {
    transform: scale(1.2);
}

/* ---- Enhanced Payment Modal Styles ---- */
.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(255,20,147,0.15);
}

.form-input::placeholder {
    color: rgba(154,143,181,0.6);
}

/* bKash specific button */
.btn-bkash {
    background: linear-gradient(135deg, #E2136E, #c71585);
    border: none;
}

.btn-bkash:hover {
    box-shadow: 0 6px 24px rgba(226,19,110,0.4);
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 768px) {
    .floating-support-container {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-support-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .partner-redirect-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 16px;
    }
    
    .success-message-box {
        left: 10px;
        right: 10px;
        transform: translateX(0) translateY(-100px);
        padding: 16px 20px;
    }
    
    .success-message-box.show {
        transform: translateX(0) translateY(0);
    }
}

/* ---- Admin Form Actions ---- */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.admin-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.admin-input:focus {
    border-color: #FF1493;
    box-shadow: 0 0 0 3px rgba(255,20,147,0.12);
}

.admin-label {
    color: #9a8fb5;
    font-size: 0.76rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: block;
}

/* ---- Locked Content Styles for Cards ---- */
.content-card.locked {
    position: relative;
}

.content-card.locked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,20,147,0.15), rgba(139,0,0,0.15));
    border-radius: inherit;
    pointer-events: none;
}

.unlock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255,20,147,0.4);
    z-index: 10;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255,20,147,0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255,20,147,0.7);
    }
}
