/* --- Centralized Footer Styles --- */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 109px 40px 109px;
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    width: 100%;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.footer-link {
    font-size: 14px;
    color: #909090;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    padding-left: 0;
    border-bottom: 1px solid #666666;
    padding-bottom: 12px;
    width: 100%;
}

.footer-link:last-child {
    border-bottom: none;
}

.footer-link:hover {
    color: var(--color-primary, #ff8c21);
    padding-left: 10px;
}

/* Social Icon Blocks (Simplified for now) */
.social-links-container {
    display: flex;
    gap: 16px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: var(--color-primary, #ff8c21);
    transform: translateY(-2px);
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #555;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .site-footer {
        padding: 60px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-link {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Custom Audio Player */
.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
    background: transparent !important;
}

.player-btn {
    background: none !important;
    border: none !important;
    cursor: pointer;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    transition: color 0.3s ease;
    width: 24px !important;
    height: 24px !important;
}

.player-btn:hover {
    color: var(--color-primary, #ff8c21) !important;
    background: none !important;
}

.player-progress-container {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
}

/* Custom Range Slider Styling */
.player-range {
    -webkit-appearance: none;
    appearance: none;
    /* Fix lint warning */
    width: 100%;
    height: 6px;
    background: #404040 !important;
    /* Gray background */
    border-radius: 3px;
    outline: none !important;
    cursor: pointer;
    background-image: linear-gradient(var(--color-primary, #ff8c21), var(--color-primary, #ff8c21));
    background-size: 0% 100%;
    background-repeat: no-repeat;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Thumb Styling - Firefox */
.player-range::-moz-range-thumb {
    width: 12px !important;
    height: 12px !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer;
    opacity: 0;
    /* Hidden by default or minimal */
    transition: opacity 0.2s;
    appearance: none;
}

/* Thumb Styling - WebKit */
.player-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px !important;
    height: 12px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    border: none !important;
    box-shadow: none !important;
}

.player-range:hover::-webkit-slider-thumb {
    opacity: 1;
}

.player-range:hover::-moz-range-thumb {
    opacity: 1;
}

.player-time {
    font-size: 11px;
    color: #909090;
    min-width: 35px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}