/* ============================================================================================================*/
/*====================================== DYNAMIC VIEW GLOBALS CSS ============================================*/
/* ============================================================================================================*/
/* Shared styles for all community pages with dynamic views */

/* ==================== BACK BUTTON ==================== */
.back-button-container {
    position: fixed;
    top: 120px;
    left: 2rem;
    z-index: 999;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(120deg, 
        rgba(26, 26, 26, 0.9) 0%,
        rgba(40, 30, 25, 0.9) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    color: #d4a574;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4),
                inset 0 1px 1px rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.back-button:hover {
    background: linear-gradient(120deg, 
        rgba(212, 165, 116, 0.2) 0%,
        rgba(212, 165, 116, 0.3) 50%,
        rgba(212, 165, 116, 0.2) 100%
    );
    border-color: rgba(212, 165, 116, 0.7);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.5),
                0 0 20px rgba(212, 165, 116, 0.4);
    transform: translateX(-5px);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

/* ==================== RESPONSIVE BACK BUTTON ==================== */
@media (max-width: 768px) {
    .back-button-container {
        top: 100px;
        left: 1rem;
    }
    
    .back-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .back-button-container {
        top: 90px;
        left: 0.5rem;
    }
    
    .back-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }
    
    .back-button svg {
        width: 16px;
        height: 16px;
    }
}