* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow: hidden;
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

/* Modern LCD/OLED screen — clean, crisp, no CRT artifacts */
.modern-screen {
    z-index: -10;
    filter: brightness(1.02) contrast(1.01) saturate(1.03);
    border-radius: 4px;
}

.interface-wrapper {
    width: 100%;
    top: 64px;
    left: 64px;
}

.icon-control-container {
    height: 26.5px;
    width: 26.5px;
}

/* Desk item hover tooltip */
.desk-tooltip {
    position: fixed;
    padding: 8px 14px;
    background: rgba(22, 22, 30, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    white-space: nowrap;
    transform: translate(-50%, -100%);
    margin-top: -12px;
    opacity: 0;
    transition: opacity 0.18s ease;
}
.desk-tooltip.visible { opacity: 1; }

/* Interactive item cursor hint */
.interactable-hint {
    display: flex;
    align-items: center;
    gap: 8px;
}
.interactable-hint .icon { font-size: 16px; }

@media only screen and (max-width: 768px) {
    .interface-wrapper {
        width: 100%;
        top: 24px;
        left: 24px;
    }

    .icon-control-container {
        height: 19.5px;
        width: 19.5px;
    }
}

/* macOS System Font Stack */
* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, p {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 15px;
    margin: 0;
}

@media only screen and (max-width: 768px) {
    h1, h2, h3, h4, h5, p {
        font-size: 11px;
    }
}

/* Glass info card */
.macos-glass-card {
    background: rgba(30, 30, 35, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255,255,255,0.08) inset;
    padding: 12px 18px;
    margin-bottom: 8px;
    transition: background 0.2s ease;
}

.macos-glass-card:hover {
    background: rgba(40, 40, 50, 0.65);
}

/* macOS Control Center pill buttons */
.macos-pill-button {
    background: rgba(30, 30, 35, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.macos-pill-button:hover {
    background: rgba(60, 60, 70, 0.7);
}

.macos-pill-button:active {
    transform: scale(0.9);
    background: rgba(80, 80, 95, 0.8);
}

@media only screen and (max-width: 768px) {
    .macos-pill-button {
        width: 28px;
        height: 28px;
    }
}

/* macOS Notification toast */
.macos-toast {
    background: rgba(28, 28, 32, 0.75);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Boot progress bar */
.macos-boot-bar-track {
    width: 200px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.macos-boot-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    transition: width 0.3s ease;
}

/* Blinking cursor — subtle macOS style */
.blinking-cursor {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.7);
    width: 2px;
    height: 14px;
    border-radius: 1px;
    animation: 1s macos-blink ease-in-out infinite;
}

@keyframes macos-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Login button hover */
.macos-login-btn:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

/* Info wrapper positioning */
.info-wrapper {
    top: 64px;
    left: 64px;
}

@media only screen and (max-width: 768px) {
    .info-wrapper {
        top: 16px;
        left: 16px;
    }
}


/*# sourceMappingURL=main.css.map*/