/* Schriftart Hidayatullah einbinden */
@font-face {
    font-family: 'Hidayatullah';
    src: url('fonts/Hidayatullah.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hidayatullah', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    width: 120%;
    height: 120%;
    object-fit: cover;
}

.container {
    background: rgba(106, 96, 247, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 5px;
    text-align: center;
    width: 1000px;
    color: rgb(0, 0, 0);
    position: relative;
    z-index: 1;
}

.profile-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 30px;
    color: rgb(0, 0, 0);
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.moon-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

h1 {
    font-size: 2rem;
    margin-top: 10px;
}

.profile-info {
    margin-top: 20px;
    font-size: 1.2rem;
}

.rank {
    font-weight: bold;
    margin-top: 10px;
}

.location {
    font-size: 1rem;
    color: #aaa;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.profile-links {
    margin-top: 20px;
}

.profile-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    background: rgba(106, 96, 247, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.profile-link, .join-link {
    color: #00ccff;
    text-decoration: none;
}

.members {
    font-size: 0.8rem;
    color: #aaa;
}

.music-controls {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.music-controls button {
    margin: 0 4px;
    padding: 10px 30px;
    border: none;
    border-radius: 10px;
    background-color: #4234ff13; /* Grundfarbe */
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: background-color 0.3s ease; /* Übergang für den Hover-Effekt */
}

/* Hover-Effekt */
.music-controls button:hover {
    background-color: #00000062; /* Neue Farbe beim Hover */
    transform: scale(1.05); /* Vergrößert den Button leicht */
}

/* Lautstärkeregler-Stil */
.music-controls input[type="range"] {
    width: 200px; /* Breite des Reglers */
    height: 5px; /* Höhe des Reglers */
    background: #00000048; /* Hintergrundfarbe des Reglers */
    border-radius: 5px; /* Abrundung der Ecken */
    outline: none; /* Entfernt den Fokusrahmen */
}

/* Stil für den Schieberegler (Thumb) */
.music-controls input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Entfernt die Standarddarstellung */
    width: 15px; /* Breite des Daumens */
    height: 15px; /* Höhe des Daumens */
    border-radius: 50%; /* Abrundung des Daumens */
    background: #4868f823; /* Daumenfarbe (grün) */
    cursor: pointer; /* Zeigt den Zeiger beim Hover */
}

/* Stil für den Schieberegler in Firefox */
.music-controls input[type="range"]::-moz-range-thumb {
    width: 15px; /* Breite des Daumens */
    height: 15px; /* Höhe des Daumens */
    border-radius: 50%; /* Abrundung des Daumens */
    background: #4868f823; /* Daumenfarbe (grün) */
    cursor: pointer; /* Zeigt den Zeiger beim Hover */
}

/* Stil für den Schieberegler in IE */
.music-controls input[type="range"]::-ms-thumb {
    width: 15px; /* Breite des Daumens */
    height: 15px; /* Höhe des Daumens */
    border-radius: 50%; /* Abrundung des Daumens */
    background: #4868f823; /* Daumenfarbe (grün) */
    cursor: pointer; /* Zeigt den Zeiger beim Hover */
}
