body {
    font-family: 'Array', sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

::selection {
    background: #a789d9;
    color: #000;
}

* {
    cursor: url(images/cursor_b.png) 16 16, auto;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('') no-repeat center center/cover;
    filter: blur(12px) brightness(0.5);
    z-index: -1;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-in-out;
    width: 90%;
    max-width: 450px;
}

.profile-picture img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #a789d9;
    box-shadow: 0 0 15px #a789d9;
}

h1, p {
    margin: 15px 0;
    font-weight: bold;
}

.highlight {
    color: #a789d9;
    text-shadow: 0px 0px 10px #a789d9;
}

.social-links a {
    display: inline-block;
    background: #a789d9;
    color: #000;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.social-links a:hover {
    background: #fff;
    color: #a789d9;
    transform: scale(1.1);
    box-shadow: 0 0 20px #a789d9;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.role-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.role-icon {
    position: relative;
    cursor: pointer;
}

.role-icon img, .role-icon svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5));
}

.role-icon .tooltip {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.role-icon:hover .tooltip {
    opacity: 1;
}

.owner-badge {
    display: inline-block;
    margin-top: 10px;
}

.audio-controls {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}