/* style.css - Poetic Minimalist / Dark Academia Design System */

:root {
    --bg-obsidian: #060606;
    --bg-panel: rgba(255, 255, 255, 0.02);
    --border-hairline: 1px solid rgba(255, 255, 255, 0.07);
    --border-hairline-glow: 1px solid rgba(223, 186, 107, 0.2);
    
    /* Elegant Typography Colors */
    --text-cream: rgba(255, 255, 255, 0.92);
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-deep-muted: rgba(255, 255, 255, 0.25);
    
    /* Warm Soft Gold Accent */
    --accent-gold: rgb(223, 186, 107);
    --accent-gold-glow: rgba(223, 186, 107, 0.05);
    
    /* Fonts */
    --font-serif: 'EB Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-elegant: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-obsidian);
    color: var(--text-cream);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography styles */
.font-serif { font-family: var(--font-serif); }
.font-mono { font-family: var(--font-sans); letter-spacing: 0.5px; }
.italic { font-style: italic; }
.bold { font-weight: 600; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.accent-gold { color: var(--accent-gold); }

/* Main Zine Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border-hairline);
    z-index: 1000;
}

.nav-brand {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-divider {
    color: var(--text-deep-muted);
    font-weight: 300;
}

.brand-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    transition: var(--transition-elegant);
}

.nav-menu a:hover {
    color: var(--text-cream);
}

/* Premium Poetic Buttons */
.luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    color: var(--text-cream);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    transition: var(--transition-elegant);
}

.luxury-btn:hover {
    border-color: var(--text-cream);
    background: rgba(255, 255, 255, 0.04);
}

.btn-primary {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(223, 186, 107, 0.02);
}

.btn-primary:hover {
    border-color: var(--accent-gold);
    background: rgba(223, 186, 107, 0.08);
}

.btn-secondary {
    border-color: rgba(255,255,255,0.1);
    color: var(--text-muted);
}

.btn-sm {
    padding: 0.45rem 1.25rem;
    font-size: 0.75rem;
}

/* Master Layout Wrapper */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 6% 4rem;
}

/* Segment Labels */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
    color: var(--text-cream);
}

.hero-desc {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
}

/* Gallery Frame Panel (Museum Card layout) */
.gallery-frame {
    border: var(--border-hairline);
    background-color: var(--bg-panel);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1px;
    transition: var(--transition-elegant);
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.gallery-frame:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.frame-header {
    border-bottom: var(--border-hairline);
    padding: 0.75rem 1.25rem;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.frame-content {
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(0,0,0,0.2);
}

.frame-footer {
    border-top: var(--border-hairline);
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Concentric Hairline eye outline styling */
.hairline-svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    opacity: 0.8;
    transition: var(--transition-elegant);
}

.hairline-svg:hover {
    opacity: 1;
}

/* Elegant CA clipboard wrapper */
.ca-container {
    margin-top: 2rem;
    margin-bottom: 2.25rem;
    width: 100%;
    max-width: 520px;
    position: relative;
}

.ca-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: var(--border-hairline);
    background-color: rgba(255, 255, 255, 0.015);
    padding: 0.85rem 1.5rem;
    transition: var(--transition-elegant);
}

.ca-row:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.03);
}

.ca-address {
    font-size: 0.95rem;
    color: var(--text-cream);
    word-break: break-all;
    flex-grow: 1;
}

.ca-copy-btn {
    background: transparent;
    border: 1px solid var(--text-cream);
    color: var(--text-cream);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    padding: 0.45rem 1.15rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-elegant);
}

.ca-copy-btn:hover {
    background: var(--text-cream);
    color: var(--bg-obsidian);
}

.ca-status {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: none;
}

.elegant-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 50%, transparent);
    margin: 6rem 0;
}

/* Sensory visualizer assessment grid */
.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.visualizer-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.dark-screen {
    background-color: #020202 !important;
    min-height: 300px;
    overflow: hidden;
    transition: var(--transition-elegant);
}

.apple-svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    position: relative;
    z-index: 10;
}

/* Hide levels default state */
#apple-l2, #apple-l3, #apple-l4, #apple-l5 {
    display: none;
    transition: var(--transition-elegant);
}

/* Darkness shroud mask */
.shroud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #020202;
    opacity: 0;
    transition: var(--transition-elegant);
    z-index: 5;
    pointer-events: none;
}

.visualizer-box {
    box-shadow: inset 0 0 20px rgba(223, 186, 107, 0.02);
}

.visualizer-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Elegant Text Levels List */
.levels-menu {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.level-opt {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.95rem 1.5rem;
    cursor: pointer;
    text-align: left;
    color: var(--text-muted);
    border-radius: 1px;
    transition: var(--transition-elegant);
}

.level-opt:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.01);
}

.level-opt.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(223, 186, 107, 0.02);
    box-shadow: 0 4px 20px rgba(223, 186, 107, 0.02);
}

.lvl-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1rem;
    line-height: 1;
}

.level-opt.active .lvl-number {
    border-color: rgba(223, 186, 107, 0.3);
}

.lvl-details {
    display: flex;
    flex-direction: column;
}

.lvl-name {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
}

.lvl-sub {
    font-size: 0.75rem;
    color: var(--text-deep-muted);
    margin-top: 1px;
}

.level-opt.active .lvl-sub {
    color: rgba(223, 186, 107, 0.6);
}

/* Dynamic Assessment Content Box */
.diagnosis-panel {
    border: var(--border-hairline-glow);
    background-color: rgba(223, 186, 107, 0.015);
    border-radius: 1px;
}

.diag-header {
    border-bottom: var(--border-hairline-glow);
    padding: 0.65rem 1.25rem;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
}

.diag-content {
    padding: 1.75rem;
}

.diag-title {
    font-size: 1.65rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-cream);
}

.diag-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Grid layout for Narrative & Specs */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 4rem;
}

.detail-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Poetic Thread Quotes (Classic paper editorial look) */
.poetic-thread {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.thread-quote {
    padding: 1rem 0;
}

.quote-meta {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.quote-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.quote-founder .quote-text {
    color: var(--text-cream);
}

.thread-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.highlight {
    border-bottom: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.accent-gold-text {
    color: var(--accent-gold);
}

.narrative-footer {
    font-size: 1.1rem;
    line-height: 1.65;
}

/* Elegant Custom Grocery Nutrition Facts style layout */
.specs-table {
    border: 1px solid var(--text-cream);
    background-color: var(--bg-obsidian);
    padding: 1.75rem;
    max-width: 440px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.table-title {
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 0.25rem;
}

.table-sub {
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-muted);
}

.table-divider-thick {
    height: 8px;
    background-color: var(--text-cream);
    margin: 0.6rem 0;
}

.table-divider-thin {
    height: 2px;
    background-color: var(--text-cream);
    margin: 0.4rem 0;
}

.table-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
}

.table-row.font-mono {
    font-size: 1.15rem;
    font-weight: 600;
    border-top: none;
    padding-top: 0.15rem;
    color: var(--text-cream);
}

.indented {
    padding-left: 1.25rem;
}

.table-ingredients {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.table-footnote {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Poetic Footer details */
.luxury-footer {
    border-top: var(--border-hairline);
    padding: 6rem 0 4rem;
    margin-top: 8rem;
    background-color: #030303;
}

.footer-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 0 6%;
}

.footer-title {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.footer-desc {
    max-width: 650px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.footer-meta {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-deep-muted);
}

/* Responsive Breakpoints */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .ca-row {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .visualizer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .specs-table {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.25rem 6%;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .poetic-thread {
        padding-left: 1.25rem;
    }
    
    .quote-text {
        font-size: 1.15rem;
    }
}

/* ===== Holographic 3D Canvas Styles ===== */
.hologram-box {
    width: 100%;
    min-height: 280px;
    height: 280px;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hologram-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

/* scanlines projection overlay */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.18) 50%
    );
    background-size: 100% 4px;
    z-index: 12;
    pointer-events: none;
    opacity: 0.85;
}

/* CRT flickering simulation */
.hologram-box::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.25) 50%
    ), linear-gradient(
        90deg, 
        rgba(255, 0, 0, 0.03), 
        rgba(0, 255, 0, 0.01), 
        rgba(0, 0, 255, 0.03)
    );
    opacity: 0;
    z-index: 11;
    pointer-events: none;
    animation: flicker 0.15s infinite;
}

@keyframes flicker {
    0% { opacity: 0.12; }
    50% { opacity: 0.08; }
    100% { opacity: 0.12; }
}

/* ===== Full Screen 3D Parallax Background Canvas ===== */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -100;
    pointer-events: none;
    background-color: var(--bg-obsidian);
}

/* ===== Volumetric Candlelight Vignette Follower ===== */
.cursor-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle, 
        rgba(223, 186, 107, 0.045) 0%, 
        rgba(223, 186, 107, 0.01) 40%, 
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -50;
    transition: transform 0.08s ease-out;
}

/* ===== Web Audio Toggle Button Navbar styling ===== */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.audio-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(255, 255, 255, 0.015);
    border: var(--border-hairline);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 1px;
    transition: var(--transition-elegant);
}

.audio-toggle-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-cream);
    background-color: rgba(255, 255, 255, 0.03);
}

.audio-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-deep-muted);
    transition: var(--transition-elegant);
}

.audio-toggle-btn.active {
    color: var(--accent-gold);
    border-color: var(--border-hairline-glow);
}

.audio-toggle-btn.active .audio-indicator {
    background-color: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold);
    animation: pulseGlow 1.8s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.35); opacity: 1; }
}

/* ===== Laboratory Milestone Logs Grid (Roadmap) ===== */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.25rem;
    margin-top: 2rem;
}

.roadmap-card {
    transition: var(--transition-elegant);
}

.roadmap-card:hover {
    border-color: rgba(223, 186, 107, 0.35);
    box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 15px rgba(223, 186, 107, 0.02);
}

.roadmap-list {
    list-style: none;
    padding: 0.5rem;
}

.roadmap-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.25rem;
}

.roadmap-list li::before {
    content: "▫";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.roadmap-list li:last-child {
    margin-bottom: 0;
}

/* ===== NEW INTERACTIVE INSTALLATION GLINT, BREATHING & GLASS-TERMINAL STYLES ===== */

/* Glint Hover Animations */
.luxury-btn, .level-opt {
    position: relative;
    overflow: hidden;
}

.luxury-btn::after, .level-opt::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 30%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.05) 70%,
        transparent 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
}

.luxury-btn:hover::after, .level-opt:hover::after {
    animation: glintEffect 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes glintEffect {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* Dynamic Breathing Borders for frames and diagnosis panels */
.diagnosis-panel, .visualizer-box {
    animation: pulseBorder 5s ease-in-out infinite alternate;
}

@keyframes pulseBorder {
    0% { border-color: rgba(223, 186, 107, 0.15); }
    100% { border-color: rgba(223, 186, 107, 0.35); }
}

/* Header dynamic grid-status light layout */
.diag-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.diag-status-glow {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold);
    animation: diagStatusPulse 1.8s infinite alternate;
}

@keyframes diagStatusPulse {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.25); }
}

/* Sleek Glass-Terminal Console styling */
.console-box {
    margin-top: 1.5rem;
    border: 1px solid rgba(223, 186, 107, 0.12);
    background-color: rgba(2, 2, 2, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1px;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(223, 186, 107, 0.02);
}

.console-header {
    background-color: rgba(223, 186, 107, 0.03);
    border-bottom: 1px solid rgba(223, 186, 107, 0.12);
    padding: 0.55rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.console-dots {
    display: flex;
    gap: 5px;
}

.console-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.dot-1 { background-color: rgba(239, 68, 68, 0.4); }
.dot-2 { background-color: rgba(245, 158, 11, 0.4); }
.dot-3 { background-color: rgba(16, 185, 129, 0.4); }

.console-title {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    color: rgba(223, 186, 107, 0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.console-body {
    padding: 0.85rem 1.15rem;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.72rem;
    line-height: 1.45;
}

.console-line {
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.5px;
    word-break: break-all;
}

.console-line.text-muted {
    color: rgba(255, 255, 255, 0.35);
}

.console-line.text-glow {
    color: var(--accent-gold);
    text-shadow: 0 0 5px rgba(223, 186, 107, 0.35);
}

.console-line.blink::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    background-color: var(--accent-gold);
    margin-left: 3px;
    animation: cursorBlink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes cursorBlink {
    from, to { background-color: transparent }
    50% { background-color: var(--accent-gold) }
}




