/* CatalogueWorks Landing Page */

:root {
    --bg-color: #000000;
    --text-primary: #ededed;
    --text-muted: #767b85;
    --border-color: #303236;
    --accent-blue: #2c88e5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Global Crosshair Cursor Everywhere On Page */
*, *::before, *::after, html, body, button, input, select, textarea, table, tr, td, th, div, span, a, label, canvas, svg {
    cursor: crosshair !important;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mono {
    font-family: 'Geist Mono', monospace;
}

/* Boot animation */
@keyframes bootUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.boot-anim {
    animation: bootUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* Top Console Header Bar */
.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 45px;
    background-color: #000000;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
    z-index: 50;
}

.flex-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.health-lamp {
    width: 18px;
    height: 10px;
    border: 1px solid var(--border-color);
    display: inline-block;
}

.lamp-on {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 8px rgba(44, 136, 229, 0.5);
}

.status-tag {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Main Screen Container */
.main-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background-color: #000000;
}

.content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 90vw;
}

/* Main WORK IN PROGRESS Heading */
.title-wip {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 6.5vw, 5.2rem);
    letter-spacing: 0.12em;
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    user-select: none;
    text-shadow: 0 0 20px rgba(237, 237, 237, 0.05);
}

/* Infinitely Scrambling Subtext: Smaller font & wider letter spacing than main title */
.scramble-subtext {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.7rem, 1.8vw, 1.05rem);
    letter-spacing: 0.45em; /* Significantly wider letter spacing than WORK IN PROGRESS */
    color: var(--text-muted);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding: 0.5rem 1.25rem;
    border-top: 1px solid rgba(48, 50, 54, 0.6);
    border-bottom: 1px solid rgba(48, 50, 54, 0.6);
    margin-top: 0.5rem;
    user-select: none;
}
