body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
    color: white;
    overflow: hidden;
}

.menu-title {
    position: absolute;
    top: 30px;
    right: 60px;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: right;
    z-index: 10;
}

.main-menu {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 10;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: 0.3s;
    cursor: pointer;
}
.menu-item img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}
.menu-item span {
    font-size: 1.2rem;
    text-transform: uppercase;
}
.menu-item.active {
    opacity: 1;
    filter: drop-shadow(0 0 10px yellow);
}

.sections {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px;
}

.section {
    display: none;
    animation: fade 0.5s ease-in-out;
}
.section.active {
    display: block;
}
@keyframes fade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer-controls {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 1rem;
    display: flex;
    gap: 40px;
    opacity: 0.7;
}

/* SHOP SECTION STYLES */
.shop-container {
    display: flex;
}

.filters {
    width: 240px;
    background: #222;
    padding: 20px;
    border-right: 2px solid #333;
}

.filters h2 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #ffcc00;
}

.filters label {
    display: block;
    margin: 10px 0;
    font-size: 1rem;
}

.products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 0 0 30px;
}

.product-card {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 360px;
}
.product-card:hover {
    background: #333;
    transform: scale(1.03);
}
.product-card img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}
.product-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffcc00;
}
.product-card p {
    margin: 10px 0 0;
    font-weight: bold;
    font-size: 1rem;
    color: white;
}

/* VIDEO BACKGROUND */
video.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* AUDIO PLAYER */
.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.85);
    border: 2px solid #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    z-index: 100;
    color: #fff;
    font-family: sans-serif;
    max-width: 280px;
}
.audio-player .cover {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}
.audio-player .track-info {
    flex-grow: 1;
    font-size: 0.8rem;
}
.audio-player button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

/* AUDIO PLAYER EXTENDED */
.audio-player {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(20, 20, 20, 0.85);
    border: 2px solid #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    z-index: 100;
    color: #fff;
    font-family: sans-serif;
    max-width: 300px;
}

.audio-player .cover {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}
.audio-player .track-info {
    flex-grow: 1;
    font-size: 0.8rem;
}
.audio-player button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}
.audio-player #volume-slider {
    width: 60px;
}

.playlist {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    padding: 8px 12px;
    list-style: none;
    margin: 0;
    border-radius: 8px;
    font-size: 0.8rem;
    max-height: 150px;
    overflow-y: auto;
    color: white;
    z-index: 99;
}
.playlist li {
    cursor: pointer;
    padding: 4px 0;
}
.playlist li.active {
    color: #ffcc00;
    font-weight: bold;
}