body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    height: 100vh;
    width: 100vw;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: grayscale(1) brightness(0.4) blur(6px);
    transition: filter 0.8s ease;
}

body.bg-active #bg-video {
    filter: grayscale(1) brightness(0.4) blur(0);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: -1;
}

#clickText {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #000;
    z-index: 9999;

    color: #f5f5f5;
    font-size: 1.1rem;
    font-family: "Georgia", serif;
    letter-spacing: 0.12em;
    text-transform: lowercase;

    opacity: 1;
    transition: opacity 0.6s ease;
}


#clickText.hide {
    opacity: 0;
    pointer-events: none;
}



.profile-container {
    text-align: center;
    background: none;
    box-shadow: none;
    padding: 0;
}

.profile-pic {
    display: none;
}

h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 18px;

    letter-spacing: 8px;
    text-align: center;

    text-shadow:
        0 0 8px #ffffff,
        0 0 16px rgba(255, 255, 255, 0.6);
}

.links {
    display: flex;
    justify-content: center;
    gap: 26px;
}


.icon i {
    font-size: 32px;
    color: #ffffff;
    text-shadow: 
        0 0 4px #ffffff,
        0 0 10px rgba(255, 255, 255, 0.4);
    transition: 0.25s ease;
}

.icon svg {
    color: #fff;
    width: 32px;
    height: 32px;
    fill: #ffffff !important; 
    filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.icon i:hover,
.icon svg:hover {
    transform: scale(1.2);
    text-shadow: 
        0 0 6px #ffffff,
        0 0 14px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 5px #ffffff)
            drop-shadow(0 0 7px rgba(255, 255, 255, 0.3));
    cursor: pointer;
}

.image-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;

    filter: drop-shadow(0 0 4px #ffffff)
            drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));

    transition: transform 0.25s ease, filter 0.25s ease;
}

.image-icon img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px #ffffff)
            drop-shadow(0 0 14px rgba(255, 255, 255, 0.7))
            drop-shadow(0 0 22px rgba(255, 255, 255, 0.5));
    cursor: pointer;
}

#asdasd {
    opacity: 0;
    transition: opacity 0.8s ease;
}

#asdasd.show {
    opacity: 1;
}


#volumeControl {
    position: fixed;
    top: 18px;
    left: 20px;
    z-index: 5;

    opacity: 0;
    transition: opacity 0.6s ease;
}

body.bg-active #volumeControl {
    opacity: 1;
}

#volumeSlider {
    appearance: none;
    -webkit-appearance: none;

    width: 140px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    transition: 0.2s ease;
}

#volumeSlider:hover {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff, 0 0 20px rgba(255, 255, 255, 0.6);
    transition: 0.2s ease;
}

#volumeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 14px #ffffff, 0 0 24px rgba(255, 255, 255, 0.8);
}

#volumeSlider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff, 0 0 20px rgba(255, 255, 255, 0.6);
}


* {
    cursor: url(https://r2.guns.lol/2855ad2f-cf8a-4e4b-92a2-3fe4075108f9.cur) 16 16, auto !important;
}

::selection {
    background-color: white;
    color: black;
}

.dud {
    opacity: 0.6;
}




