* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background-color: #000;
    color: #fff;
}

/* Background Styles */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video,
#bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 1.0;
}

/* Content Container */
.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Header Styles */
header {
    text-align: center;
    padding: 60px 20px 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1.5s ease-in;
}

/* Music Player Styles */
.music-player {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.music-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* Video Player Styles */
.video-player {
    position: fixed;
    top: 110px;
    right: 20px;
    z-index: 1000;
}

.control-btn {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.control-btn:active {
    transform: scale(0.95);
}

/* Gallery Styles */
.gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.gallery-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.8s ease-out;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.1);
}

.gallery-item img,
.gallery-item video {
    max-width: 100%;
    max-height: 600px;  /* Limits image height */
    width: auto;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: contain;  /* Keeps aspect ratio, shows full image */
}

.gallery-item video {
    max-height: 600px;
}

/* Optional: Uncomment to make all images a specific width */
/*
.gallery-item img {
    max-width: 800px;
    width: 100%;
}
*/

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .gallery {
        gap: 40px;
        padding: 20px 10px;
    }

    .music-player {
        top: 10px;
        right: 10px;
    }

    .video-player {
        top: 100px;
        right: 10px;
    }

    .music-note {
        font-size: 10px;
    }

    .control-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
