* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('cur/cursor.cur'), auto;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Lucida Console', Monaco, monospace;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

/* scaled to fit everything */
#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    /* force it to fill the viewport */
    width: 100vw;
    height: 100vh;
    /* this is the secret sauce to zoom/stretch correctly */
    object-fit: cover; 
    /* center it perfectly */
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.25;
    background: #000;
}

#enter-screen {
    position: fixed;
    inset: 0;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.enter-text {
    font-size: 14px;
    animation: blink 1s infinite step-end;
}

@keyframes blink { 50% { opacity: 0; } }

#main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 10;
}

.hidden { display: none; }

/* layout boxes */
.myspace-layout { width: 450px; max-width: 90%; }
.profile-header .name { font-size: 32px; margin-bottom: 12px; }

.content-panel {
    border: 1px dashed #444;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.6);
}

.about-section { padding: 12px; font-size: 11px; line-height: 1.5; color: #bbb; }
.about-section b { color: #ffcc00; }
.panel-title { background: #1a1a1a; padding: 6px 10px; font-size: 11px; border-bottom: 1px dashed #444; }

.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding: 10px; gap: 10px; }
.social-link {
    font-family: Verdana, sans-serif;
    font-size: 10px;
    color: #6699cc;
    text-decoration: none;
    text-align: center;
    padding: 8px;
    border: 1px dashed #333;
}

.social-link:hover { color: #fff; border: 1px dashed #fff; }

/* sparkle trail */
.sparkle {
    position: fixed;
    pointer-events: none;
    background: #fff;
    width: 2px;
    height: 2px;
    z-index: 999;
    animation: fall 1s linear forwards;
}

@keyframes fall { to { transform: translateY(20px); opacity: 0; } }