/* main.css - The "Glory" Layer */

:root {
    --bg-dark: #0a0a0a;
    --accent-neon: #00ff41; /* Or swap to a sharp Cyan: #00e5ff */
    --text-main: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* 1. RESET & BASE */
body.is-clean {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

#main-viewport.hidden {
    display: none;
}

/* 2. GLASSMORPHISM UTILITY */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* 3. HERO SECTION */
.hero-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}

.reveal-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    color: var(--accent-neon);
    -webkit-text-fill-color: var(--accent-neon);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

/* 4. THE TERMINAL VISUAL */
.hero-visual-terminal {
    width: 400px;
    background: #000;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    margin-left: 2rem;
}

.terminal-header {
    background: #1a1a1a;
    padding: 10px;
    display: flex;
    gap: 6px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-body {
    padding: 15px;
    color: #888;
}

.term-line.green { color: var(--accent-neon); }

/* 5. FOOTER STYLES */
.glass-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1.5rem 0;
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.status-dot.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-neon);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--accent-neon);
    animation: pulse-dot 2s infinite;
}

/* 6. REVEAL ANIMATIONS */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}