html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    color: white;
    font-family: 'Noto Sans Display', sans-serif;
    perspective: 1000px;
    background-color: black;
}

/* Splash Screen Styling */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.75s ease-in-out;
    cursor: pointer;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-text {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 3rem;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* Main Content Styling */
.main-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.75s ease-in-out;
}

.main-content.active {
    opacity: 1;
}

#backgroundVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Bio Card Styling */
.bio-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 25px;
    padding: 2rem;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.username {
    font-size: 2rem;
    margin: 1rem 0 0.5rem;
    text-shadow: 0 0 5px #fff;
}

.quote-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.info-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 5px #fff;
}

.info-text .info-item {
    display: inline-block;
    margin: 0;
}

.info-text .separator {
    margin: 0 5px;
}

.social-links {
    margin: 1rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.75rem;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.social-links a:hover {
    color: #bbb;
    text-shadow: none;
}

/* Monospace Links */
.website-links {
    margin-bottom: 1rem;
}

.website-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    border: 1px solid white;
    padding: 2px 5px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 5px #fff;
}

.website-links a:hover {
    background-color: white;
    color: black;
    box-shadow: none;
}

/* Audio Player Styling */
.audio-player {
    margin-top: 1.5rem;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.track-name {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #fff;
}

.controls i {
    font-size: 1.25rem;
    cursor: pointer;
}

#volumeSlider {
    width: 100px;
    cursor: pointer;
    -webkit-appearance: none;
    background: #555;
    height: 5px;
    border-radius: 5px;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}