/* Background Slideshow Container */
.bg-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

/* Gradient Overlays */
.bg-slideshow::before,
.bg-slideshow::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000000ce 60%, #222 100%);
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

.bg-slideshow video,
.bg-slideshow img {
    position: absolute;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 5s ease-in-out;
    z-index: 1;
}

.bg-slideshow .active {
    opacity: 1;
    z-index: 1;
}


   .btc {
    display: block;
    position: fixed;
    z-index: 1000001;
    top: 24px;
    left: 24px;
    padding: 12px 28px 12px 20px;
    background: transparent;
    color: #fff;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
    outline: none;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btc:hover, .btc:focus {
    background: linear-gradient(90deg, #f7b00983 0%, #ffe06681 100%);
    color: #fff;
    box-shadow: 0 6px 32px #0003, 0 2px 0 #fff8 inset;
}
.btc i {
    font-size: 1.2em;
    margin-right: 6px;
}
.fancy-font {
    font-family: 'Pacifico', cursive;
    font-size: 1.0em;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #000;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .btc {
        display: none;
    }
    .music-info {
        display: none;
        top: 0.75rem;
        font-size: 0.85rem;
        padding: 0.4em 0.8em;
        border-radius: 0.4em;
    }

    .bg-slideshow::before,
    .bg-slideshow::after {
        background: linear-gradient(to bottom, #000 70%, #222 100%);
        opacity: 0.6;
    }

    .bg-slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 5s ease-in-out;
    z-index: 1;
}
}
