/* thx gpt for help */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    background-image: url('background.png'); 
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-top: 50px;
    color: #fff;
    text-shadow: 0 0 10px #00FFFF;
}

.description {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #ddd;
    text-shadow: 0 0 5px #fff;
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.image-container {
    position: relative;
    width: 200px;
    height: 250px;
    background-color: #333;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.image-item {
    width: 100%;
    height: 80%;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
}

.image-container.pink-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.8); 
}

.user-label {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 5px #fff;
}

/* Compact Audio Player */
.custom-audio-player {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    gap: 10px;
    transition: all 0.3s ease;
    width: 120px; /* Small size initially */
    height: 40px;
}

/* Expand the controls on hover */
.custom-audio-player:hover {
    width: 250px;
    height: 80px;
}

/* Compact buttons */
.play-pause-button, .prev-button, .next-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, font-size 0.2s ease;
}

.play-pause-button:hover, .prev-button:hover, .next-button:hover {
    transform: scale(1.2);
    font-size: 1.8rem;
}

.progress-bar {
    width: 80px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    cursor: pointer;
    display: none; /* Hidden initially */
}

.custom-audio-player:hover .progress-bar {
    display: block; /* Show when hovered */
}

.progress {
    width: 0;
    height: 100%;
    background: #00ffff;
    border-radius: 5px;
}

.volume-slider {
    width: 30px;
    overflow: hidden;
    display: none; /* Hidden initially */
    transition: width 0.3s ease;
}

.custom-audio-player:hover .volume-slider {
    display: block; /* Show on hover */
    width: 80px;
}

.volume-slider input {
    width: 100px;
}

.volume-slider:hover {
    width: 120px;
}
