body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background: radial-gradient(circle, #050508 40%, #0D0A14 75%, #190F29 95%);
    background-size: 150% 150%;
    animation: gradient-flow 15s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px 0;
    box-sizing: border-box;
    cursor: none;
    overflow-x: hidden;
}
body.custom-cursor-active {
    cursor: none;
}
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 99999;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    cursor: auto;
}
#intro-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}
#intro-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 50%, transparent 50%);
    background-size: 100% 4px;
    opacity: 0.5;
    pointer-events: none;
}
.intro-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.intro-screen.is-active {
    opacity: 1;
}
#intro-bios {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5vw;
    font-family: 'Share Tech Mono', monospace;
    color: #ccc;
    text-shadow: 0 0 5px rgba(153, 51, 255, 0.5);
}
#intro-bios p {
    margin: 5px 0;
}
#intro-login {
    cursor: auto;
}
#intro-login .login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
#intro-login .kamoji {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: #fff;
    text-shadow: 0 0 8px #FF3399;
}
#intro-login .enter-prompt {
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    color: #ccc;
    border: 1px solid #555;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#intro-login .enter-prompt:hover {
    background-color: #9933FF;
    color: #000;
    border-color: #9933FF;
}
.loading-bar-container {
    width: 200px;
    height: 4px;
    border: 1px solid #444;
    padding: 2px;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.loading-bar-container.is-loading {
    opacity: 1;
}
.loading-bar {
    width: 0%;
    height: 100%;
    background-color: #9933FF;
    transition: width 6s linear;
}
@keyframes gradient-flow {
    0% { background-position: 50% 0%; }
    50% { background-position: 50% 100%; }
    100% { background-position: 50% 0%; }
}
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.profile-container {
    perspective: 1000px;
    position: relative;
    max-width: 680px;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 15px;
    box-sizing: border-box;
}
.banner {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: transparent;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    border-radius: 16px;
    transition: transform 0.3s ease-out;
}
.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    font-family: 'Press Start 2P', cursive;
}
.banner-text .top-text,
.banner-text .bottom-text,
.banner-text .kamoji-desktop {
    position: absolute;
    margin: 0;
    padding: 0;
    color: #fff;
    line-height: 1;
}
.banner-text .kamoji-desktop {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 5px #9933FF, 0 0 10px #9933FF;
    font-size: 24px;
    transition: transform 0.3s ease-out;
}
.banner-text .top-text {
    top: 25%;
    left: 4%;
    font-size: 12px;
    opacity: 0.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.banner-text .bottom-text {
    bottom: 25%;
    right: 4%;
    font-size: 12px;
    opacity: 0.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.kamoji-mobile {
    display: none;
}
.profile-picture {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    z-index: 11;
    cursor: none;
    border-radius: 50%;
    border: 5px solid #9933FF;
    box-shadow: 0 0 15px rgba(153, 51, 255, 0.8), inset 0 0 10px rgba(0,0,0,0.5);
}
.profile-picture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}
.profile-picture img,
.profile-picture video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    animation: glitch-burst-idle 4s infinite;
}
.profile-picture video {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.profile-picture video.is-active {
    opacity: 1;
}
.profile-picture .glitch-layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #392A48;
    animation: glitch-effect-dark-idle 4s infinite;
}
.profile-picture.glitch-active img,
.profile-picture.glitch-active video {
    animation: glitch-burst 0.7s infinite;
}
.profile-picture.glitch-active .glitch-layer {
    animation: glitch-effect-dark 0.7s infinite;
}
@keyframes glitch-burst {
    0%, 89% { transform: translate(0, 0); }
    90% { transform: translate(-3px, 3px); }
    91% { transform: translate(3px, -3px); }
    92% { transform: translate(-3px, -3px); }
    93% { transform: translate(3px, 3px); }
    94%, 100% { transform: translate(0, 0); }
}
@keyframes glitch-effect-dark {
    0%, 89% { opacity: 0; transform: translate(0,0); clip-path: inset(0 0 0 0); }
    90% { opacity: 0.4; clip-path: inset(10% 0 55% 0); transform: translate(5px, 2px); }
    91% { opacity: 0.4; clip-path: inset(40% 0 20% 0); transform: translate(-4px, -2px); }
    92% { opacity: 0.4; clip-path: inset(90% 0 5% 0); transform: translate(-5px, 3px); }
    93% { opacity: 0.4; clip-path: inset(30% 0 60% 0); transform: translate(2px, -3px); }
    94%, 100% { opacity: 0; transform: translate(0,0); clip-path: inset(0 0 0 0); }
}
@keyframes glitch-burst-idle {
    0%, 95% { transform: translate(0, 0); }
    96% { transform: translate(-1px, 1px); }
    97% { transform: translate(1px, -1px); }
    98% { transform: translate(-1px, -1px); }
    99%, 100% { transform: translate(1px, 1px); }
}
@keyframes glitch-effect-dark-idle {
    0%, 95% { opacity: 0; transform: translate(0,0); clip-path: inset(0 0 0 0); }
    96% { opacity: 0.2; clip-path: inset(20% 0 70% 0); transform: translate(3px, 1px); }
    97% { opacity: 0.2; clip-path: inset(50% 0 40% 0); transform: translate(-2px, -1px); }
    98% { opacity: 0.2; clip-path: inset(75% 0 15% 0); transform: translate(-3px, 2px); }
    99%, 100% { opacity: 0; transform: translate(0,0); clip-path: inset(0 0 0 0); }
}
.content {
    background: transparent;
    padding: 100px 30px 30px 30px;
    margin-top: -75px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: none;
}
.video-wrapper,
.spotify-wrapper {
    border: 1px solid rgba(153, 51, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(153, 51, 255, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                margin-top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                margin-bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}
.video-wrapper.cinematic-mode {
    transform: scale(1.3);
    margin-top: 60px;
    margin-bottom: 60px;
    z-index: 10;
    border-color: transparent;
    background: linear-gradient(60deg, #9933FF, #00CCFF, #FF3399, #190F29);
    background-size: 300% 300%;
    padding: 5px;
    animation: liquid-border-flow 3s ease-in-out infinite alternate, neon-glow 3s ease-in-out infinite alternate;
}
@keyframes liquid-border-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes neon-glow {
    from {
        box-shadow: 0 0 15px 4px rgba(153, 51, 255, 0.4), 0 0 20px 4px rgba(0, 204, 255, 0.3);
    }
    to {
        box-shadow: 0 0 30px 4px rgba(153, 51, 255, 0.7), 0 0 45px 4px rgba(255, 51, 153, 0.5);
    }
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.spotify-wrapper iframe {
    width: 100%;
    border: none;
    display: block;
    border-radius: 10px;
}
.link-wrapper {
    border: 1px solid rgba(153, 51, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(153, 51, 255, 0.3);
    padding: 15px 20px;
    transition: background-color 0.3s ease;
    animation: pulse-glow 2.5s infinite ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.link-wrapper:hover {
    background-color: rgba(153, 51, 255, 0.1);
}
.link-wrapper a {
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    text-shadow: 0 0 5px #FF3399;
    cursor: none;
}
.triforce-icon {
    position: relative;
    width: 22px;
    height: 20px;
    cursor: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.05;
}
.triforce-icon:hover {
    transform: scale(1.2);
    opacity: 1;
}
.triforce-icon .tri {
    position: absolute;
    font-size: 16px;
    line-height: 1;
    color: #ffd700;
    text-shadow: 0 0 2px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}
.triforce-icon:hover .tri {
    color: #ffd700;
    text-shadow: 0 0 8px #ffd700, 0 0 12px #ffd700;
}
.triforce-icon .tri.top { top: 0; left: 5px; }
.triforce-icon .tri.left { top: 9px; left: 0; }
.triforce-icon .tri.right { top: 9px; left: 10px; }
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cursor-hidden {
    opacity: 0;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #8A2BE2;
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(138, 43, 226, 0.5);
}
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #0d121c;
    border: 1px solid #9933FF;
    border-radius: 10px;
    box-shadow: 0 0 25px #9933FF;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: fadeIn 0.5s;
}
.close-button {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #aaa;
    font-size: 32px;
    font-weight: bold;
    cursor: none;
    z-index: 10;
}
.close-button:hover {
    color: #9933FF;
}
.modal-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}
.modal-video-container iframe,
.modal-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.social-links {
    position: fixed;
    top: 50%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    padding: 15px 15px 15px 20px;
    background-color: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(5px);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    transform: translate(-70%, -50%);
    transition: transform 0.4s ease-in-out, opacity 0.3s ease;
    box-shadow: 0 0 8px rgba(153, 51, 255, 0.3);
    animation: pulse-glow-edge 2.5s infinite ease-in-out;
}
.social-links a {
    cursor: none;
}
.social-links:hover {
    transform: translate(0, -50%);
    animation: none;
    box-shadow: 0 0 12px rgba(153, 51, 255, 0.5);
}
.social-links a,
.social-links a:visited {
    color: #e0e0e0;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px #00CCFF, 0 0 12px #9933FF;
    transform: scale(1.2);
}
.social-links a.vrchat-link {
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-links a.vrchat-link i {
    transform: scaleX(0.8) scaleY(0.85) translateY(1px) translateX(-3px);
}
.floating-lyrics {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 1000;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #aaa;
    text-align: right;
    line-height: 1.8;
    text-decoration: none;
    animation: float-animation 6s ease-in-out infinite;
    transition: all 0.3s ease;
    padding: 10px;
    cursor: none;
}
.floating-lyrics:hover {
    color: #fff;
    text-shadow: 0 0 8px #FF3399;
}
.floating-lyrics p {
    margin: 0;
}
@keyframes float-animation {
    0% { transform: translateY(-50%) translateY(-5px); }
    50% { transform: translateY(-50%) translateY(5px); }
    100% { transform: translateY(-50%) translateY(-5px); }
}
.widget-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 280px;
    background-color: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(8px);
    color: #ddd;
    border-top: 1px solid rgba(153, 51, 255, 0.2);
    border-left: 1px solid rgba(153, 51, 255, 0.2);
    border-right: 1px solid rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(0,0,0,0.5);
    box-shadow: inset 0 0 10px #000, 0 0 20px rgba(0,0,0,0.8);
    z-index: 1000;
    transform: translateX(0);
    transition: transform 0.4s ease-in-out, opacity 0.5s ease;
    border-radius: 0;
    font-family: 'Share Tech Mono', monospace;
}
.widget-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXVpaWlwcHBvb29ra2uEhIR8fHyNjY1sbGxycnJzc3Nra2t4eHhwcHBUVFRHR0dISEhMTExSUlJdXV1aWlpISEh2dna4tKOkAAAAPUlEQVR42tSQyw4AIAwD5+j9L/pXHeBkwg1iGNaYhAq4n4w40hSjWB6I1QBVS3iCiSznBYkmh2sQoo3hSAaAkY0VzM5r2h4AAAAASUVORK5CYII=);
    opacity: 0.1;
    pointer-events: none;
}
.widget-container.hidden {
    transform: translateX(120%);
    opacity: 0;
}
.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}
.widget-header p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
}
.widget-buttons button {
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: none;
    padding: 0 5px;
    line-height: 1;
    transition: all 0.2s ease;
}
.widget-buttons button:hover {
    color: #FF3399;
}
#song-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: none;
}
#song-link.disabled {
    pointer-events: none;
    cursor: default;
}
.widget-content {
    display: flex;
    align-items: center;
    padding: 12px;
    transition: background-color 0.2s ease;
}
#song-link:hover .widget-content {
    background-color: rgba(153, 51, 255, 0.1);
}
#album-art {
    width: 80px;
    height: 80px;
    margin-right: 12px;
    flex-shrink: 0;
    border-radius: 0;
    filter: saturate(0.7) contrast(1.2) brightness(0.9);
    image-rendering: pixelated;
    border: 1px solid #000;
}
.song-info {
    flex: 1;
    min-width: 0;
}
.song-info p {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 1px 1px 2px #000;
}
#song-title {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}
.song-info.system-idle #song-title {
    font-size: 14px;
}
.song-info.system-idle #song-artist {
    display: none;
}
#song-artist {
    font-size: 14px;
    color: #aaa;
    margin-top: 4px;
}
.minimized-bubble {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    cursor: none;
    z-index: 1001;
    transition: transform 0.3s ease, opacity 0.5s ease;
    backdrop-filter: blur(5px);
}
.minimized-bubble.hidden {
    display: none;
}
.minimized-bubble:hover {
    transform: scale(1.1);
}
.crt-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A0D1F;
    border: 1px solid rgba(153, 51, 255, 0.3);
    box-shadow: inset 0 0 10px rgba(153, 51, 255, 0.4), 0 0 15px rgba(0,0,0,0.8);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}
.crt-wrapper i {
    font-size: 24px;
    color: #FF3399;
    text-shadow: 0 0 5px #FF3399, 0 0 10px #00CCFF;
    z-index: 1;
    animation: crt-text-flicker 0.05s infinite;
}
.crt-wrapper::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    z-index: 2;
    background-size: 100% 4px;
    pointer-events: none;
    animation: crt-scanline-flicker 0.2s infinite;
}
@keyframes crt-scanline-flicker {
    0% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(2px); opacity: 0.6; }
    100% { transform: translateY(0); opacity: 0.8; }
}
@keyframes crt-text-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}
@media (max-width: 1200px) {
    .floating-lyrics {
        display: none;
    }
}
@media (max-width: 900px) {
    #construction-notice {
        display: none;
    }
    .social-links {
        left: auto;
        right: auto;
        top: auto;
        bottom: 15px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        transform: none;
        gap: 25px;
        background-color: transparent;
        backdrop-filter: none;
        animation: none;
        box-shadow: none;
    }
    .social-links:hover {
        transform: none;
    }
}
@media (max-width: 768px) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
    body {
        cursor: auto !important;
    }
    .video-wrapper.cinematic-mode {
        transform: scale(1);
        margin-top: 0;
        margin-bottom: 20px;
        border-color: rgba(153, 51, 255, 0.5);
        background: none;
        padding: 0;
        animation: none;
    }
    .video-wrapper.cinematic-mode::before {
        display: none;
    }
}
@media (max-width: 480px) {
    .banner-text {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    .banner-text .top-text,
    .banner-text .bottom-text,
    .banner-text .kamoji-desktop,
    .banner-text .kamoji-mobile {
        position: static;
        transform: none;
    }
    .banner-text .kamoji-desktop {
        display: none;
    }
    .banner-text .kamoji-mobile {
        display: inline-block;
        font-size: 18px;
        color: #fff;
        text-shadow: 0 0 5px #9933FF, 0 0 10px #FF3399;
    }
    .banner-text .bottom-text {
        text-align: center;
        flex: 0;
    }
    .profile-picture,
    .profile-picture img,
    .profile-picture video {
        width: 120px;
        height: 120px;
    }
    .content {
        padding: 80px 10px 20px 10px;
    }
    .modal-content {
        width: 95%;
        padding: 10px;
    }
}
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(153, 51, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(153, 51, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 10px rgba(153, 51, 255, 0.3);
    }
}
@keyframes pulse-glow-edge {
    0% {
        box-shadow: 0 0 8px rgba(153, 51, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 16px rgba(153, 51, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 8px rgba(153, 51, 255, 0.3);
    }
}
.sackboy-image {
    width: 100px;
    height: auto;
    margin: 30px auto 0 auto;
    display: block;
    cursor: none;
    transition: transform 0.2s ease;
}
.sackboy-image:hover {
    transform: scale(1.05);
}
.footer-notice {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
}
.footer-notice p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: #888;
    margin: 0;
}
.lbp-emoji {
    position: fixed;
    font-size: 30px;
    opacity: 0;
    pointer-events: none;
    animation: floatAndFade 0.8s forwards ease-out;
    z-index: 5;
}
@keyframes floatAndFade {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1.5);
    }
    100% {
        transform: translate(var(--x-end), var(--y-end)) scale(0.5);
        opacity: 0;
    }
}
.hidden-on-load {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.show-on-scroll {
    opacity: 1;
    transform: translateY(0);
}
.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.video-background-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) brightness(0.7);
}
body.video-is-playing .social-links,
body.video-is-playing .floating-lyrics,
body.video-is-playing .widget-container,
body.video-is-playing .minimized-bubble {
    opacity: 0.1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.content > * {
    transition: opacity 0.5s ease;
}
body.video-is-playing .content > *:not(.video-active):not(.sackboy-image) {
    opacity: 0.1;
}
#construction-notice {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#construction-notice img {
    width: 60px;
    height: auto;
    pointer-events: auto;
    animation: float-notice 8s ease-in-out infinite;
}
@keyframes float-notice {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
#construction-notice .notice-box {
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(153, 51, 255, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    pointer-events: auto;
    max-width: 200px;
}
#construction-notice .notice-text p {
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: #aaa;
    line-height: 1.6;
    text-shadow: 1px 1px 2px #000;
}
#construction-notice .notice-text p:first-child {
    margin-bottom: 5px;
}
body.video-is-playing #construction-notice {
    opacity: 0.1;
    pointer-events: none;
}