/* Import NJ Naruto Font */
@font-face {
    font-family: 'NinjaNaruto';
    src: url('../fonts/ninja-naruto.ttf') format('truetype');
}

/* Body + Background GIF */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'NinjaNaruto', sans-serif; /* All text uses NJ Naruto by default */
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    flex-direction: column;
    background: url("../images/background.gif") no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
    color: white;
}

/* Discord Profile Picture with Pulsing Glow Animation */
.profile-logo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin-top: 60px;
    margin-bottom: 20px;
    animation: glowPulse 2s infinite alternate;
}

/* Glow Animation Keyframes */
@keyframes glowPulse {
    0% { box-shadow: 0 0 15px #0004ffff, 0 0 30px #0004ffff; }
    50% { box-shadow: 0 0 25px #0004ffff, 0 0 50px #0004ffff; }
    100% { box-shadow: 0 0 15px #0004ffff, 0 0 30px #0004ffff; }
}

/* Username / YouTube / Server */
.username, .youtube, .server {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 2rem;
    text-shadow: 0 0 10px #0004ffff, 0 0 20px #0004ffff;
}

/* YouTube Icon */
.youtube img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Server Icon */
.server img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Server name stays default font, not NJ Naruto */
.server a {
    font-family: 'Audiowide', cursive;
}

/* Links */
a {
    color: white;
    text-decoration: none;
    text-shadow: 0 0 10px #0004ffff, 0 0 20px #0004ffff;
}

a:hover {
    text-decoration: underline;
}

/* Volume Slider Top-Left - Pulsing Glow */
#volume-container {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.volume-label {
    font-family: 'NinjaNaruto', sans-serif;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 10px #0004ffff, 0 0 20px #0004ffff;
}

/* Slider */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 150px;
    height: 8px;
    background: #330000;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 5px #0004ffff, 0 0 10px #0004ffff;
    animation: sliderPulse 2s infinite alternate;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #0004ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #0004ffff, 0 0 20px #0004ffff;
}

input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #0004ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #0004ffff, 0 0 20px #0004ffff;
}

/* Slider Pulse Animation */
@keyframes sliderPulse {
    0% { box-shadow: 0 0 5px #0004ffff, 0 0 10px #0004ffff; }
    50% { box-shadow: 0 0 15px #0004ffff, 0 0 30px #0004ffff; }
    100% { box-shadow: 0 0 5px #0004ffff, 0 0 10px #0004ffff; }
}
