/* 
 * Chirag Parmar - Agency Landing Page (V12)
 * Style: Cinematic, Precise, High-End
 */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    /* Theme Variables */
    --bg-main: #030304;
    --text-main: #ffffff;
    --text-sec: #9ca3af;
    --accent: #3b82f6;
    --border: rgba(255, 255, 255, 0.1);
    
    --glow-1: #4f46e5;
    --glow-2: #ec4899;
    
    --card-bg: rgba(255, 255, 255, 0.03);
    
    --font-display: 'Space Grotesk', sans-serif;
    --font-ui: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-ui);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s, color 0.4s;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

/* Background Ambient Glows */
.ambient-glow {
    position: fixed; width: 600px; height: 600px;
    border-radius: 50%; opacity: 0.15; filter: blur(100px);
    z-index: -1; pointer-events: none;
}
.glow-1 { top: -200px; left: -200px; background: var(--glow-1); }
.glow-2 { bottom: -200px; right: -200px; background: var(--glow-2); }

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: 80px;
    display: flex; align-items: center; z-index: 100;
    backdrop-filter: blur(20px); background: rgba(15, 23, 42, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.brand {
    font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700;
    color: var(--text-main); text-decoration: none;
    letter-spacing: -1px; transition: color 0.3s;
    display: flex; align-items: center; gap: 4px;
    white-space: nowrap; flex-shrink: 0; /* Prevent wrapping */
}
.brand .accent-bracket { color: var(--accent); transition: transform 0.3s; display: inline-block; } /* Inline-block for transform */
.brand:hover .accent-bracket { transform: scale(1.2); }
.brand:hover { color: #fff; text-shadow: 0 0 10px rgba(56, 189, 248, 0.5); }

.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-link { font-weight: 500; font-size: 0.95rem; opacity: 0.8; transition: opacity 0.2s; }
.nav-link:hover { opacity: 1; }
.theme-btn {
    background: transparent; border: 1px solid var(--border);
    padding: 6px 16px; border-radius: 20px; color: var(--text-main);
    font-size: 0.85rem; cursor: pointer; transition: background 0.2s;
}
.theme-btn:hover { background: var(--border); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
.bar { width: 24px; height: 2px; background: var(--text-main); transition: all 0.3s; }
.mobile-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
.mobile-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero-section {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 80px; position: relative; overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; width: 100%;
}
.hero-text {
    display: flex; flex-direction: column; justify-content: center;
}

/* Hero Window Visual */
.hero-visual {
    perspective: 1000px; display: flex; justify-content: center;
}
.hero-window {
    width: 100%; max-width: 400px; height: 300px;
    background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.hero-window:hover { transform: rotateY(0) rotateX(0) scale(1.02); }
[data-theme="light"] .hero-window { background: rgba(255,255,255,0.6); }

.hero-window .window-header {
    background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.1);
}
[data-theme="light"] .hero-window .window-header { background: rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.1); }

.hero-window .window-body {
    padding: 30px; font-family: var(--font-mono); color: var(--accent); font-size: 0.95rem; line-height: 1.8;
}
.label-pill {
    font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em;
    color: var(--accent); margin-bottom: 24px;
}
.hero-title {
    font-family: var(--font-display); font-size: 5rem; line-height: 1.05;
    font-weight: 700; margin-bottom: 32px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--text-main), var(--text-sec));
    background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.5rem; color: var(--text-sec); max-width: 650px; margin-bottom: 48px;
    font-weight: 300;
}
#dynamicRole {
    font-weight: 600; color: #fff;
}
.cursor-blink {
    animation: blink 1s step-end infinite; color: var(--accent);
}
.hero-actions { display: flex; gap: 20px; }
.btn { padding: 16px 32px; border-radius: 6px; font-weight: 600; cursor: pointer; display: inline-block; }
.btn-primary { background: var(--text-main); color: var(--bg-main); }
.btn-line { border: 1px solid var(--border); color: var(--text-main); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; margin-top: 20px; }

/* Projects */
.work-section { padding: 40px 0 20px; }
.section-heading {
    font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 40px;
}

.project-tabs {
    display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap;
}
.tab-btn {
    background: transparent; border: 1px solid var(--border); color: var(--text-sec);
    padding: 10px 24px; border-radius: 30px; cursor: pointer;
    font-family: var(--font-mono); font-size: 0.9rem; transition: all 0.3s;
}
.tab-btn:hover, .tab-btn.active {
    border-color: var(--accent); color: var(--accent); background: rgba(59, 130, 246, 0.05);
}

.project-feature {
    display: flex; align-items: center; gap: 80px;
    margin-bottom: 80px;
}
.project-feature.reverse { flex-direction: row-reverse; }

.project-text { flex: 0.8; }
.p-num { font-family: var(--font-mono); font-size: 3rem; color: var(--accent); font-weight: 700; opacity: 0.8; margin-bottom: 16px; display: block; }
.p-title { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; }
.p-desc { color: var(--text-sec); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.7; }
.p-tags { display: flex; gap: 12px; margin-bottom: 32px; }
.p-tags li { 
    font-family: var(--font-mono); font-size: 0.85rem; 
    border: 1px solid var(--border); padding: 6px 12px; border-radius: 20px; 
}
.p-link { font-weight: 600; border-bottom: 1px solid var(--accent); display: inline-block; padding-bottom: 4px; color: var(--accent); }

.project-visual {
    flex: 1.2; height: 450px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    perspective: 1000px;
}

.mockup-window {
    width: 90%; height: 80%;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.reverse .mockup-window { transform: rotateY(10deg) rotateX(5deg); }
.project-feature:hover .mockup-window { transform: rotateY(0) rotateX(0) scale(1.02); }

.window-header {
    height: 30px; background: var(--border); display: flex; align-items: center; padding-left: 12px;
}
.dots { display: block; width: 6px; height: 6px; background: #64748b; border-radius: 50%; box-shadow: 10px 0 #64748b, 20px 0 #64748b; }
.window-body { height: calc(100% - 30px); opacity: 0.8; background-size: cover; background-position: top; }

/* Custom Project Headers */
.visual-cinearc .window-header { background: rgba(59, 130, 246, 0.2); border-bottom: 1px solid rgba(59, 130, 246, 0.3); }
.visual-cinearc .dots { background: #60a5fa; box-shadow: 10px 0 #60a5fa, 20px 0 #60a5fa; }

.visual-travel .window-header { background: rgba(244, 63, 94, 0.2); border-bottom: 1px solid rgba(244, 63, 94, 0.3); }
.visual-travel .dots { background: #fb7185; box-shadow: 10px 0 #fb7185, 20px 0 #fb7185; }

.visual-smart .window-header { background: rgba(34, 197, 94, 0.2); border-bottom: 1px solid rgba(34, 197, 94, 0.3); }
.visual-smart .dots { background: #4ade80; box-shadow: 10px 0 #4ade80, 20px 0 #4ade80; }

.visual-manga .window-header { background: rgba(168, 85, 247, 0.2); border-bottom: 1px solid rgba(168, 85, 247, 0.3); }
.visual-manga .dots { background: #c084fc; box-shadow: 10px 0 #c084fc, 20px 0 #c084fc; }

.visual-pokemon .window-header { background: rgba(234, 179, 8, 0.2); border-bottom: 1px solid rgba(234, 179, 8, 0.3); }
.visual-pokemon .dots { background: #facc15; box-shadow: 10px 0 #facc15, 20px 0 #facc15; }

.visual-feedback .window-header { background: rgba(249, 115, 22, 0.2); border-bottom: 1px solid rgba(249, 115, 22, 0.3); }
.visual-feedback .dots { background: #fb923c; box-shadow: 10px 0 #fb923c, 20px 0 #fb923c; }

.visual-spotify .window-header { background: rgba(34, 197, 94, 0.2); border-bottom: 1px solid rgba(34, 197, 94, 0.3); }
.visual-spotify .dots { background: #22c55e; box-shadow: 10px 0 #22c55e, 20px 0 #22c55e; }
.visual-spotify .window-body { background-image: linear-gradient(135deg, #1db954, #1ed760); }

.visual-youtube .window-header { background: rgba(239, 68, 68, 0.2); border-bottom: 1px solid rgba(239, 68, 68, 0.3); }
.visual-youtube .dots { background: #f87171; box-shadow: 10px 0 #f87171, 20px 0 #f87171; }
.visual-youtube .window-body { background-image: linear-gradient(135deg, #ff0000, #ff4d4d); }

.visual-piano .window-header { background: rgba(255, 255, 255, 0.2); border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.visual-piano .dots { background: #e2e8f0; box-shadow: 10px 0 #e2e8f0, 20px 0 #e2e8f0; }
.visual-piano .window-body { background-image: linear-gradient(135deg, #1e293b, #334155); }

.visual-listener .window-header { background: rgba(99, 102, 241, 0.2); border-bottom: 1px solid rgba(99, 102, 241, 0.3); }
.visual-listener .dots { background: #818cf8; box-shadow: 10px 0 #818cf8, 20px 0 #818cf8; }
.visual-listener .window-body { background-image: linear-gradient(135deg, #4338ca, #6366f1); }



/* About */
.about-section { padding: 30px 0; background: var(--card-bg); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.bio-lead { font-size: 2rem; font-family: var(--font-display); line-height: 1.2; margin-bottom: 16px; font-weight: 500; }
.bio-body { color: var(--text-sec); font-size: 1.1rem; margin-bottom: 24px; }
.stack-box { display: flex; gap: 60px; }
.stack-col h4 { font-family: var(--font-mono); color: var(--text-sec); margin-bottom: 8px; font-size: 0.9rem; text-transform: uppercase; }
.stack-col li { font-weight: 500; margin-bottom: 8px; }

.timeline-item {
    display: flex; gap: 30px; margin-bottom: 24px; border-left: 2px solid var(--border); padding-left: 24px;
}
.t-year { font-family: var(--font-mono); color: var(--accent); }
.t-info h5 { font-size: 1.2rem; margin-bottom: 4px; }
.t-org { color: var(--text-sec); }

/* Footer */
.footer { padding: 60px 0; text-align: center; }
.footer-cta { font-family: var(--font-display); font-size: 4rem; font-weight: 700; margin-bottom: 24px; }
.footer-email { font-size: 1.5rem; color: var(--accent); margin-bottom: 60px; display: block; }
.footer-meta { display: flex; justify-content: space-between; color: var(--text-sec); font-size: 0.9rem; border-top: 1px solid var(--border); padding-top: 24px; }

/* Boot Screen */
.boot-screen {
    position: fixed; inset: 0; background: #000; z-index: 999;
    display: flex; justify-content: center; align-items: center;
}
.console { font-family: var(--font-mono); color: #22c55e; font-size: 1.2rem; }
.cursor { animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.blink { animation: blink 1s infinite; }

/* Expanded Footer */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-main);
    border-top: 1px solid var(--border);
}
.footer-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    margin-bottom: 80px;
}
.footer-left { display: flex; flex-direction: column; align-items: flex-start; }

.footer-cta {
    font-size: 4rem; font-family: var(--font-display); 
    line-height: 1.1; margin-bottom: 40px;
}
.footer-links {
    display: flex; gap: 40px; flex-wrap: wrap;
}
.f-link {
    font-size: 1.25rem; color: var(--text-sec); text-decoration: none; 
    border-bottom: 1px solid transparent; transition: all 0.3s;
}
.f-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Contact Visual */
.visual-contact { opacity: 0.8; height: 400px; }
.visual-contact .window-header { background: rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
[data-theme="light"] .visual-contact .window-header { background: #cbd5e1 !important; border-bottom: 1px solid #94a3b8 !important; }
.visual-contact .window-body { 
    background: #0f172a; 
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: #38bdf8; font-family: var(--font-mono); font-size: 1rem;
}
[data-theme="light"] .visual-contact .window-body { background: #f1f5f9; color: #0284c7; }

.footer-bottom {
    width: 100%; display: flex; justify-content: space-between; 
    padding-top: 40px; border-top: 1px solid var(--border);
    color: var(--text-sec); font-size: 0.9rem;
}


/* Responsive */
/* Responsive */
@media (max-width: 900px) {
    /* Navigation */
    /* Navigation */
    /* Fixed Height & Relative for dropdown positioning */
    /* Fixed Height & Sticky for mobile */
    .navbar { height: 70px; padding: 0; display: flex; align-items: center; position: fixed; top: 0; width: 100%; z-index: 10000; } 
    .nav-container { flex-wrap: nowrap; gap: 0; justify-content: space-between; } 
    .brand { font-size: 1.25rem; } 
    .mobile-toggle { display: flex !important; }
    
    .nav-right {
        display: none; 
        position: absolute; top: 70px; left: 0; width: 100%; /* Dropdown Absolute */
        flex-direction: column; align-items: center; gap: 24px;
        padding: 30px; margin-top: 5px; z-index: 10001; /* High Z-index */
        
        /* Glass Effect */
        background: rgba(15, 23, 42, 0.95); /* Slightly darker for better contrast */
        backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
        border-radius: 0 0 12px 12px; /* Rounded bottom only */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        
        animation: slideDown 0.3s ease-out forwards;
    }
    .nav-right.active { display: flex; }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
    
    /* Hide custom cursor on touch */
    .cursor-dot, .cursor-outline, .click-ripple { display: none !important; }
    * { cursor: auto !important; }
    
    /* Hero */
    .hero-section { min-height: auto; padding-top: 140px; padding-bottom: 80px; display: block; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-text { align-items: center; }
    
    /* Typography Scaling */
    .hero-title { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
    .hero-desc { font-size: 1.1rem; margin-bottom: 32px; max-width: 100%; }
    .label-pill { margin-bottom: 16px; font-size: 0.75rem; }
    
    /* Reset Transform & Auto Height for Mobile */
    .hero-window { 
        margin: 0 auto; max-width: 100%; height: auto; min-height: 250px;
        transform: none !important; 
        text-align: left; /* Ensure terminal text stays left */
    }
    
    /* Projects */
    .work-section { padding: 60px 0; }
    .project-feature { flex-direction: column; gap: 30px; margin-bottom: 100px; text-align: left; }
    .project-feature.reverse { flex-direction: column; }
    
    /* Reset Transform & Adjust Height */
    .mockup-window { transform: none !important; }
    .project-visual { width: 100%; height: 250px; } /* Slightly shorter for images */
    
    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .stack-box { flex-direction: row; gap: 40px; flex-wrap: wrap; }

    /* Footer */
    .footer { padding: 80px 0 40px; }
    .footer-layout { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-left { align-items: center; }
    .footer-links { justify-content: center; }
    
    /* Contact Window Auto Height */
    .visual-contact { 
        width: 100%; height: auto; min-height: 250px; 
    }
    .footer-cta { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    
    .hero-title { font-size: 1.8rem; line-height: 1.3; margin-bottom: 24px; padding-top: 10px; }
    .hero-desc { font-size: 1rem; margin-bottom: 32px; }
    .btn { width: 100%; text-align: center; padding: 14px 0; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    
    .p-num { font-size: 2rem; margin-bottom: 8px; }
    .p-title { font-size: 1.8rem; margin-bottom: 12px; }
    .p-desc { font-size: 1rem; }
    
    .project-feature { margin-bottom: 80px; }
    .project-visual { height: 220px; }
    
    .stack-box { flex-direction: column; gap: 30px; }
    
    .footer-cta { font-size: 2rem; }
    .footer-links { flex-direction: column; gap: 16px; }
    .footer-bottom { flex-direction: column; gap: 20px; align-items: center; }
}



/* Light Theme Specific - Project Controls */
[data-theme="light"] .window-header {
    background: #e2e8f0 !important; /* Standard Slate for light mode base */
    border-bottom: 1px solid #cbd5e1 !important;
}
[data-theme="light"] .dots { 
    background: #94a3b8 !important; 
    box-shadow: 10px 0 #94a3b8, 20px 0 #94a3b8 !important;
}

/* Hero Floating Shapes */
.float-shape {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.15; z-index: -1;
}
.shape-1 {
    width: 400px; height: 400px; top: -100px; left: -100px;
    background: var(--glow-1);
    animation: float 20s infinite alternate;
}
.shape-2 {
    width: 300px; height: 300px; bottom: 100px; right: -50px;
    background: var(--glow-2);
    animation: float 15s infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(20deg); }
}

/* Cursor Trail */
.cursor-dot {
    width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
    position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
    transform: translate(-50%, -50%);
}
.cursor-outline {
    width: 40px; height: 40px; border: 1px solid var(--accent); border-radius: 50%;
    position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, top 0.1s, left 0.1s;
    opacity: 0.5;
}

/* Click Animation - Ripple */
.click-ripple {
    position: fixed; border-radius: 50%; transform: scale(0);
    background: rgba(255, 255, 255, 0.4); pointer-events: none; z-index: 9998;
}

/* Mobile: Disable custom */
@media (max-width: 900px) {
    .cursor-dot, .cursor-outline, .click-ripple { display: none !important; }
}

/* Terminal Loader - Hacker Console */
.boot-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #000; z-index: 10005; /* Higher than navbar (10000) */
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;  /* Enforce Mono */
    color: #e2e8f0;
}

.console-container {
    width: 100%; max-width: none;
    padding: 40px;
}

.console-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #334155;
    padding-bottom: 15px; margin-bottom: 20px;
    font-size: 0.9rem; font-weight: 700; letter-spacing: 1px;
    color: #fff;
}

.header-left { display: flex; align-items: center; gap: 12px; }
.win-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.console-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
}

/* Columns */
.col-left, .col-right { display: flex; flex-direction: column; gap: 30px; }

.log-group { display: flex; flex-direction: column; gap: 8px; }
.log-line {
    font-size: 0.85rem; color: #94a3b8; line-height: 1.5;
}
.log-title {
    font-weight: 700; color: #fff; margin-bottom: 10px; font-size: 1rem;
    margin-top: 20px;
}

/* System Info specific */
.system-info .log-line span { color: #fff; }

.console-footer {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-top: 40px; padding-top: 15px;
    border-top: 1px solid #334155;
    font-size: 1rem; color: #fff;
}

.audio-wave {
    display: flex; align-items: flex-end; gap: 4px; height: 30px;
}
.audio-wave span {
    width: 3px; background: #38bdf8;
    animation: wave 1s ease-in-out infinite;
}
.audio-wave span:nth-child(2n) { background: #818cf8; animation-duration: 1.2s; }
.audio-wave span:nth-child(3n) { animation-duration: 0.8s; }
.audio-wave span:nth-child(5n) { animation-duration: 1.5s; }

@keyframes wave {
    0%, 100% { height: 5px; opacity: 0.5; }
    50% { height: 25px; opacity: 1; }
}

.blink { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Mobile Response */
/* Mobile Response */
@media (max-width: 768px) {
    .console-grid { grid-template-columns: 1fr; gap: 15px; } /* Reduced gap */
    .col-right { display: flex; margin-top: -10px; } /* Pull up system info */
    
    /* Boot Screen Fixes */
    .console-container { padding: 15px; } /* Tighter padding */
    
    /* Header: Keep dots and title on same line if possible, or minimal stack */
    .console-header { 
        display: flex; flex-wrap: wrap; 
        gap: 10px; align-items: center;
        margin-bottom: 15px; padding-bottom: 10px;
    }
    .header-left { width: 100%; justify-content: flex-start; gap: 15px; }
    
    /* Log Lines */
    .log-line { font-size: 0.7rem; line-height: 1.4; } /* Smaller logs */
    
    /* Welcome Message */
    .log-title { margin-top: 15px; margin-bottom: 5px; }
    .final-msg .log-title { 
        font-size: 0.95rem; /* Much smaller to prevent wrapping issues */
        letter-spacing: 0px;
        white-space: nowrap; /* Force single line if possible */
    }
    
    /* Footer */
    .console-footer { margin-top: 20px; padding-top: 10px; }
    
    /* Hero Fixes (Consolidated) */
    .hero-title { 
        font-size: 2rem !important; /* Force smaller size */
        line-height: 1.3 !important; 
        margin-bottom: 24px; padding-top: 20px; 
    }
    .hero-desc { font-size: 1rem !important; margin-bottom: 32px; }
    .label-pill { margin-bottom: 16px; font-size: 0.75rem; }
}
