/* Christmas-themed styles */
#skull-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    z-index: -1;
}

#bgCanvas {
    display: block;
    width: 100%;
    height: 100%;
}

.volume-control {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    background: rgba(228, 10, 45, 0.5);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(5px);
    z-index: 100;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
    outline: none;
    opacity: 0.8;
    transition: all .3s ease;
    border-radius: 2px;
}

.volume-slider:hover {
    opacity: 1;
    transform: scale(1.02);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all .3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.volume-slider:active::-webkit-slider-thumb {
    transform: scale(0.95);
}

.social-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.social-container:hover {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-container i {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}