@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    background-color: #121212;
}

body {
    background-image: url('../images/jeep_bg.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.animated-btn {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #7289da;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.animated-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.hidden {
    display: none;
}

#linktree {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #e5e8f1;
    transition: transform 0.3s ease;
}

.profile-picture:hover {
    transform: scale(1.05);
}

h1 {
    margin: 0;
    color: white;
    font-weight: 600;
}

.username, .bio {
    color: #ccc;
    margin: 5px 0;
}

.song-panel {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.song-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.play-pause-btn {
    background: white;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 40px;
    border-radius: 255px;
    aspect-ratio: 1 / 1;
    transform: scale(0.8);
    cursor: pointer;
    transition: transform 0.3s;
}

.play-pause-btn:hover {
    transform: scale(0.95);
}

.song-info {
    margin-left: 10px;
    flex-grow: 1;
    color: white;
}

.progress-bar {
    height: 5px;
    background-color: #444;
    margin-top: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #eeeeee;
    width: 0;
}

.volume-control {
    display: flex;
    align-items: center;
    color: white;
}

#volume-slider {
    width: 80px;
    margin-left: 10px;
    /* Der Hintergrund des Reglers wurde auf ein helles Grau geändert */
    background: #ccc;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    border-radius: 5px;
}

/* Stil des Schiebereglers für WebKit (Chrome, Safari) */
#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffffff; /* Der Schieberegler ist jetzt weiß */
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background-color: #eee;
}

/* Stil des Schiebereglers für Firefox */
#volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffffff; /* Der Schieberegler ist jetzt weiß */
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background-color: #eee;
}

.btn {
    display: block;
    background-color: #7289da;
    color: white;
    text-decoration: none;
    padding: 12px;
    margin: 15px 0;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background-color: #5b6eae;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.hobbies {
    margin-top: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
}

.hobbies:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.hobbies h2 {
    margin-top: 0;
}

.hobbies ul {
    list-style-type: none;
    padding: 0;
}

.hobbies li {
    margin: 10px 0;
    transition: transform 0.3s ease;
}

.hobbies li:hover {
    transform: translateX(5px);
}

.hobbies i {
    margin-right: 10px;
    color: #f0f0f0;
}
