/* ===========================================
   LOCALGHOST - DIRECTORY PAGE
   Page-specific styles for /directory
   Requires: base.css, pages.css
   =========================================== */

/* Use: <main class="narrow flex-center"> */

/* ===========================================
   CONSTRUCTION BOX
   =========================================== */

.construction-box {
    border: 2px solid var(--terminal);
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    background: var(--void-lighter);
}

.construction-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, var(--terminal), transparent, var(--terminal));
    z-index: -1;
    opacity: 0.1;
}

.construction-icon {
    font-family: var(--font-mono);
    font-size: 3rem;
    color: var(--terminal);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--terminal-dim);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px var(--terminal-dim); }
    50% { text-shadow: 0 0 40px var(--terminal), 0 0 60px var(--terminal-dim); }
}

.construction-title {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--terminal);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.construction-text {
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.status-line {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.status-line .blink {
    animation: blink 1s step-end infinite;
}

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

/* ===========================================
   EXPECT SECTION
   =========================================== */

.expect-section {
    margin-top: 3rem;
}

.expect-section h2 {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--terminal);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.expect-list {
    list-style: none;
    padding: 0;
}

.expect-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dim);
}

.expect-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--terminal);
    font-family: var(--font-mono);
}

/* ===========================================
   BACK LINK ALIGNMENT
   =========================================== */

main > .back-link {
    display: block;
    text-align: center;
    margin-top: 4rem;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .construction-box {
        padding: 2rem 1.5rem;
    }

    .construction-icon {
        font-size: 2.5rem;
    }
}