body {
    margin: 0;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.slideshow-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.active {
    opacity: 1;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    position: relative;
}

.nav-button {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.8);
}

.music-control {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s ease;
    margin-bottom: 25px;
}

.music-control:hover {
    background: rgba(255, 255, 255, 0.8);
}

h1 {
    font-family: 'Pacifico', cursive;
    text-align: center;
    color: white;
    font-size: 28px;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .slideshow-container {
        width: 100%;
        height: 60vh;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .music-control {
        font-size: 14px;
        padding: 8px 12px;
    }

    h1 {
        font-size: 24px;
    }
}
