/* ==========================================================================
   CYBER SECURITY PORTFOLIO SYSTEM - style.css
   Black + Blue Cyberpunk // Glassmorphism // Premium Modern UI
   ========================================================================== */

/* 1. Reset and Variables */
:root {
    --bg-black: #08030f;
    --bg-dark: #0d0615;
    --bg-card: linear-gradient(135deg, rgba(21, 9, 36, 0.7) 0%, rgba(13, 5, 23, 0.6) 100%);
    --border-color: rgba(236, 72, 153, 0.15);
    --border-hover: rgba(217, 70, 239, 0.5);
    
    /* Neon Palette - Eye-soothing Deep Plum / Rose / Lavender */
    --neon-blue: #8b5cf6;
    --neon-cyan: #ec4899;
    --neon-purple: #d946ef;
    --neon-glow: rgba(139, 92, 246, 0.2);
    --neon-cyan-glow: rgba(236, 72, 153, 0.18);
    --neon-purple-glow: rgba(217, 70, 239, 0.28);
    
    /* Feedback Colors */
    --color-green: #d946ef;
    --color-red: #f43f5e;
    --color-yellow: #f59e0b;
    --color-text: #f4f4f7;
    --color-text-muted: #a1a1aa;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    /* Layouts */
    --nav-height: 80px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom cursor */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-black);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.booting {
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--neon-blue);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
}

/* 2. Custom Cursor */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
}

.custom-cursor-outline {
    width: 24px;
    height: 24px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    will-change: transform;
}

.custom-cursor-outline .corner {
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1.5px solid var(--neon-cyan);
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.4);
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.25s;
}

.custom-cursor-outline .corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.custom-cursor-outline .corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.custom-cursor-outline .corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.custom-cursor-outline .corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.custom-cursor-glow {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.12) 0%, rgba(0, 240, 255, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9997;
    will-change: transform;
}

/* Hover brackets expand and rotate 45 deg */
.cursor-hover .custom-cursor-outline .corner {
    border-color: var(--neon-purple);
    box-shadow: 0 0 8px rgba(189, 0, 255, 0.6);
}
.cursor-hover .custom-cursor-outline .corner.tl { transform: translate(-4px, -4px) rotate(45deg); }
.cursor-hover .custom-cursor-outline .corner.tr { transform: translate(4px, -4px) rotate(45deg); }
.cursor-hover .custom-cursor-outline .corner.bl { transform: translate(-4px, 4px) rotate(45deg); }
.cursor-hover .custom-cursor-outline .corner.br { transform: translate(4px, 4px) rotate(45deg); }

/* Click brackets shrink and rotate 90 deg */
.cursor-click .custom-cursor-outline .corner {
    border-color: var(--color-red);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.6);
}
.cursor-click .custom-cursor-outline .corner.tl { transform: translate(2px, 2px) rotate(90deg); }
.cursor-click .custom-cursor-outline .corner.tr { transform: translate(-2px, 2px) rotate(90deg); }
.cursor-click .custom-cursor-outline .corner.bl { transform: translate(2px, -2px) rotate(90deg); }
.cursor-click .custom-cursor-outline .corner.br { transform: translate(-2px, -2px) rotate(90deg); }

/* 3. Global Overlays & Canvases */
#bg-3d-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}

#matrix-canvas.hidden {
    opacity: 0 !important;
}

.cyber-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* 4. Boot Screen Overlay */
.boot-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.boot-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.boot-terminal {
    width: 100%;
    max-width: 650px;
    background: rgba(0, 5, 15, 0.95);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    border-radius: 6px;
    font-family: var(--font-mono);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.terminal-header {
    background: rgba(0, 15, 40, 0.8);
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-header .dot.red { background-color: var(--color-red); }
.terminal-header .dot.yellow { background-color: var(--color-yellow); }
.terminal-header .dot.green { background-color: var(--color-green); }

.terminal-header .title {
    margin-left: 10px;
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.terminal-body {
    padding: 20px;
    min-height: 250px;
    max-height: 350px;
    overflow-y: auto;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terminal-line {
    word-break: break-all;
    display: flex;
    gap: 5px;
}

.text-green { color: var(--color-green); }
.text-red { color: var(--color-red); }
.text-blue { color: var(--neon-cyan); }
.text-yellow { color: var(--color-yellow); }

.boot-progress-container {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.boot-progress-bar {
    flex-grow: 1;
    height: 6px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.boot-progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    transition: width 0.1s linear;
}

.boot-progress-text {
    min-width: 45px;
    text-align: right;
    font-size: 12px;
    color: var(--neon-cyan);
}

.boot-footer {
    padding: 10px;
    text-align: right;
    background: rgba(0, 15, 40, 0.3);
}

.skip-btn {
    background: transparent;
    border: 1px solid var(--color-red);
    color: var(--color-red);
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all var(--transition-speed);
}

.skip-btn:hover {
    background: var(--color-red);
    color: var(--bg-black);
    box-shadow: 0 0 10px var(--color-red);
}

/* 5. Main App Container */
.app-container {
    opacity: 0;
    transition: opacity 1.5s ease;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-container.active {
    opacity: 1;
}

/* HUD Navbar */
.hud-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.nav-logo .accent-glow {
    font-size: 18px;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    font-family: var(--font-mono);
}

.nav-logo .sub-text {
    font-size: 9px;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-item {
    text-decoration: none;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item:hover, .nav-item.active {
    color: var(--neon-cyan);
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(0, 102, 255, 0.05);
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.control-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--neon-cyan);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-speed);
}

.control-btn:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
    background: rgba(0, 229, 255, 0.05);
}

.control-btn.active {
    background: var(--neon-blue);
    color: var(--bg-black);
    border-color: var(--neon-blue);
    box-shadow: 0 0 12px var(--neon-blue);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--neon-cyan);
    transition: all var(--transition-speed);
}

/* Dynamic HUD Alerts */
.hud-alert-telemetry {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 99;
    font-family: var(--font-mono);
    pointer-events: none;
}

.hud-alert-telemetry .badge {
    background: rgba(0, 5, 20, 0.8);
    border: 1px solid var(--border-color);
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: 1px;
}

.status-online { color: var(--color-green); border-color: rgba(57, 255, 20, 0.2) !important; }
.location-ip { color: var(--neon-cyan); }
.encryption-type { color: var(--color-yellow); }

/* Glassmorphism Panel styles */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px 0 rgba(0, 10, 40, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 6px;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed), transform var(--transition-speed);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px 0 var(--neon-purple-glow);
}

/* Cyber Buttons */
.cyber-btn {
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.cyber-btn.primary {
    background: var(--neon-blue);
    color: #ffffff;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-glow);
}

.cyber-btn.primary:hover {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px var(--neon-cyan);
    color: var(--bg-black);
}

.cyber-btn.secondary {
    background: rgba(0, 102, 255, 0.1);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-blue);
}

.cyber-btn.secondary:hover {
    background: rgba(0, 102, 255, 0.25);
    box-shadow: 0 0 20px var(--neon-glow);
}

.cyber-btn.outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--border-color);
}

.cyber-btn.outline:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan-glow);
    color: var(--neon-cyan);
}

.cyber-btn.small {
    padding: 6px 12px;
    font-size: 9px;
    letter-spacing: 1px;
}

.cyber-btn.full-width {
    width: 100%;
    text-align: center;
}

/* Sections Base Styling */
.section-container {
    padding: 100px 8%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-number {
    display: none;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: var(--font-heading);
}

.section-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-color), transparent);
}

/* 6. Hero Section */
.hero-section {
    min-height: calc(100vh - var(--nav-height));
    padding-top: calc(var(--nav-height) + 40px);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cyber-badge {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 9px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--neon-cyan);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    color: #ffffff;
    position: relative;
}

/* Glow Glitch Text effect */
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 var(--neon-blue);
    top: 0;
    color: #ffffff;
    background: transparent;
    overflow: hidden;
    clip: rect(0,900px,0,0); 
    animation: noise-anim 2s infinite linear alternate-reverse;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: -1px 0 var(--neon-cyan);
    top: 0;
    color: #ffffff;
    background: transparent;
    overflow: hidden;
    clip: rect(0,900px,0,0); 
    animation: noise-anim-2 3s infinite linear alternate-reverse;
}

@keyframes noise-anim {
  0% { clip: rect(51px, 9999px, 86px, 0); }
  5% { clip: rect(32px, 9999px, 5px, 0); }
  10% { clip: rect(61px, 9999px, 89px, 0); }
  15% { clip: rect(82px, 9999px, 45px, 0); }
  20% { clip: rect(7px, 9999px, 73px, 0); }
  100% { clip: rect(4px, 9999px, 19px, 0); }
}
@keyframes noise-anim-2 {
  0% { clip: rect(81px, 9999px, 5px, 0); }
  100% { clip: rect(10px, 9999px, 90px, 0); }
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
}

.glow-text {
    text-shadow: 0 0 10px var(--neon-cyan-glow);
}

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

@keyframes blink {
    from, to { color: transparent }
    50% { color: var(--neon-cyan) }
}

.hero-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* Micro Interactive Terminal Card inside Hero */
.hero-terminal-card {
    height: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-color: rgba(0, 102, 255, 0.2);
}

.terminal-card-header {
    background: rgba(0, 15, 35, 0.9);
    padding: 8px 15px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-card-header .terminal-title {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.terminal-card-header .header-dots {
    display: flex;
    gap: 4px;
}

.terminal-card-header .header-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--neon-blue);
}

.terminal-card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
}

.terminal-output-area {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 250px;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    padding-top: 8px;
}

.terminal-input-line .prompt {
    color: var(--color-text-muted);
}

.terminal-input-line input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    font-size: 11px;
    flex-grow: 1;
}

/* 7. About Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.profile-image-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.profile-frame {
    aspect-ratio: 1;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border: 2px solid rgba(0, 240, 255, 0.4);
    background: radial-gradient(circle, rgba(0, 85, 255, 0.15) 0%, rgba(0, 0, 0, 0.6) 85%);
    position: relative;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 0 25px rgba(0, 85, 255, 0.25), inset 0 0 15px rgba(0, 240, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.profile-frame:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.45), inset 0 0 25px rgba(0, 240, 255, 0.25);
    transform: rotateY(8deg) rotateX(8deg) scale(1.02);
}

.profile-frame::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 240, 255, 0.15) 75%,
        rgba(0, 240, 255, 0.75) 98%,
        #00f0ff 100%
    );
    z-index: 3;
    animation: hologram-scan 4.5s linear infinite;
    pointer-events: none;
}

.profile-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 240, 255, 0.25),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 4;
    pointer-events: none;
}

.profile-frame:hover::after {
    left: 150%;
    transition: 1s ease-out;
}

@keyframes hologram-scan {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: -100%; }
}

.profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(0, 102, 255, 0.35);
    filter: drop-shadow(0 0 10px rgba(0, 85, 255, 0.35)) grayscale(15%) contrast(110%);
    transition: all 0.5s ease;
}

.profile-frame:hover img {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.6)) grayscale(0%) contrast(115%);
}

.svg-avatar-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame-corners {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--neon-cyan);
    z-index: 5;
    pointer-events: none;
}

.frame-corners.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-corners.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-corners.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.frame-corners.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.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.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    z-index: 2;
}

.profile-telemetry {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    background: rgba(0, 10, 30, 0.35);
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
}

.telemetry-row {
    display: flex;
    justify-content: space-between;
}

.telemetry-row .label { color: var(--color-text-muted); }
.telemetry-row .value { color: var(--neon-cyan); font-weight: bold; }

.about-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.about-info * {
    position: relative;
    z-index: 2;
}

.about-info .hologram-sphere-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.about-info .hologram-sphere-bg svg {
    width: 100%;
    height: 100%;
    animation: rotate-hologram 25s linear infinite;
}

@keyframes rotate-hologram {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.06); }
    100% { transform: rotate(360deg) scale(1); }
}

.info-title {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-size: 18px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
}

.info-para {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.info-para strong {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    font-weight: 700;
}

.about-clearance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.clearance-badge {
    border: 1px solid var(--border-color);
    background: rgba(0, 102, 255, 0.03);
    padding: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.clearance-badge i {
    font-size: 24px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan-glow);
}

.clearance-badge .badge-title {
    display: block;
    font-size: 9px;
    font-family: var(--font-mono);
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.clearance-badge .badge-val {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

/* 8. Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-mono);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 15px var(--neon-glow);
}

.stat-label {
    font-size: 11px;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 9. Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.skills-card {
    padding: 30px;
}

.skills-category-title {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--neon-cyan);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.skill-name {
    color: #ffffff;
}

.skill-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.skill-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    box-shadow: 0 0 10px var(--neon-cyan);
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--color-text-muted);
    padding: 6px 12px;
    border-radius: 4px;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 6px;
}

.skill-tag:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
    transform: translateY(-2px);
    background: rgba(0, 229, 255, 0.05);
}

.skills-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tool-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    border: 1px solid var(--border-color);
    background: rgba(0, 10, 30, 0.3);
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--color-text);
}

.tool-badge:hover {
    border-color: var(--neon-blue);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-glow);
    transform: translateY(-2px);
}

/* 10. Experience Section */
.experience-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-glow-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--neon-blue), var(--neon-cyan), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 40px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--bg-black);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    top: 20px;
    z-index: 10;
    box-shadow: 0 0 10px var(--neon-cyan);
    transition: transform 0.3s;
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background-color: var(--neon-cyan);
}

.timeline-content {
    padding: 24px;
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--neon-cyan);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.timeline-company {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 12px;
}

.timeline-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.timeline-bullets {
    list-style: none;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.timeline-bullets li {
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.timeline-bullets li i {
    margin-top: 4px;
    font-size: 8px;
}

/* 11. Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.project-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s;
}

/* 3D hover look placeholder - Javascript will override or we rely on standard transform */
.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-icon {
    font-size: 28px;
    color: var(--neon-cyan);
}

.project-id {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--color-text-muted);
    border: 1px solid var(--border-color);
    padding: 2px 6px;
    border-radius: 3px;
}

.project-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.project-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tech-badge {
    font-family: var(--font-mono);
    font-size: 9px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.15);
    color: var(--neon-cyan);
    padding: 2px 6px;
    border-radius: 3px;
}

.project-links {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.project-btn {
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-muted);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-speed);
}

.project-btn:hover {
    border-color: var(--neon-blue);
    color: var(--neon-cyan);
    background: rgba(0, 102, 255, 0.05);
}

.project-btn.live:hover {
    border-color: var(--neon-cyan);
    color: var(--bg-black);
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
}

/* 12. Certifications Section */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.cert-card {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cert-icon i {
    font-size: 32px;
    text-shadow: 0 0 15px var(--neon-cyan-glow);
}

.cert-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-issuer {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-text-muted);
}

.cert-status {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--color-green);
    border: 1px solid rgba(57, 255, 20, 0.2);
    background: rgba(57, 255, 20, 0.05);
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 1px;
}

/* 13. Achievements Section */
.achieve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.achieve-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge-glow {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: bold;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 10px var(--neon-cyan-glow);
}

.achieve-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.achieve-context {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--neon-blue);
    font-weight: 600;
    margin-top: -6px;
}

.achieve-desc {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* 14. GitHub Repositories Section */
.github-profile-card {
    width: 100%;
    padding: 30px;
}

.github-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.gh-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gh-profile-icon {
    font-size: 40px;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan-glow);
}

.gh-user-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.gh-user-info p {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-muted);
}

.github-repos-loading {
    text-align: center;
    padding: 40px 0;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--neon-cyan);
    position: relative;
}

.github-repos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Dynamic loaded repo cards */
.repo-card {
    border: 1px solid var(--border-color);
    background: rgba(0, 5, 20, 0.35);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition-speed);
}

.repo-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.1);
}

.repo-name {
    font-family: var(--font-mono);
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.repo-name:hover {
    color: var(--neon-cyan);
}

.repo-desc {
    font-size: 11px;
    color: var(--color-text-muted);
    flex-grow: 1;
    line-height: 1.5;
}

.repo-stats {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    padding-top: 8px;
}

.repo-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--neon-cyan);
}

/* 15. LinkedIn Section */
.linkedin-card {
    padding: 40px;
}

.linkedin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.linkedin-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 16px;
    color: var(--neon-cyan);
}

.linkedin-logo i {
    font-size: 24px;
}

.node-ver {
    font-size: 10px;
    color: var(--color-text-muted);
}

.linkedin-body {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.linkedin-left {
    text-align: center;
    border-right: 1px solid rgba(0, 102, 255, 0.1);
    padding-right: 20px;
}

.linkedin-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 15px var(--neon-cyan-glow);
}

.linkedin-left h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.linkedin-left .role {
    font-size: 12px;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.linkedin-left .company {
    font-size: 11px;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.linkedin-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.linked-stat {
    display: inline-flex;
    flex-direction: column;
    border-left: 2px solid var(--neon-blue);
    padding-left: 12px;
}

.linked-stat .number {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.linked-stat .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-text-muted);
}

.linked-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-style: italic;
}

/* 16. Contact Portal Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card .icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    background: rgba(0, 102, 255, 0.05);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--neon-cyan);
}

.contact-card h4 {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 13px;
    color: #ffffff;
    font-family: var(--font-mono);
    word-break: break-all;
}

.contact-form-panel {
    padding: 40px;
}

.form-title {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--neon-cyan);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-group label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.input-group input, .input-group textarea {
    background: rgba(0, 5, 20, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 12px;
    transition: all var(--transition-speed);
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
    outline: none;
    background: rgba(0, 10, 40, 0.8);
}

.form-status {
    font-family: var(--font-mono);
    font-size: 11px;
    min-height: 20px;
    margin-bottom: 15px;
}

/* 17. Footer */
.cyber-footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-black);
    padding: 30px 8%;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-muted);
    z-index: 10;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.footer-moto {
    color: var(--neon-cyan);
    font-size: 12px;
}

.footer-timestamp {
    color: var(--color-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-text-muted);
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-links .sep {
    color: rgba(0, 102, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: calc(var(--nav-height) + 20px);
        gap: 20px;
    }
    
    .hero-terminal-card {
        height: 320px;
    }

    .about-grid, .linkedin-body, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .linkedin-left {
        border-right: none;
        border-bottom: 1px solid rgba(0, 102, 255, 0.1);
        padding-right: 0;
        padding-bottom: 20px;
    }

    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline-glow-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 45px;
        padding-right: 0;
        text-align: left !important;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-dot {
        left: 12px !important;
    }
}

@media (max-width: 768px) {
    .hud-navbar {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none; /* Toggle handled in JS */
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(0, 5, 20, 0.95);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        gap: 15px;
    }
    
    .nav-links.mobile-active {
        display: flex;
    }
    
    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hud-alert-telemetry {
        display: none;
    }
}

/* Animations for loader terminal scanner line */
@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    opacity: 0.7;
    animation: scanline 2.5s infinite linear;
}

/* ==========================================================================
   NEW PREMIUM HUD & FLOATING BACKGROUND ELEMENTS
   ========================================================================== */

/* Pinned Right Telemetry HUD */
.hud-sidebar-telemetry {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 250px;
    z-index: 950;
    padding: 18px;
    font-family: var(--font-mono);
    font-size: 10px;
    border-color: rgba(0, 240, 255, 0.22);
    background: rgba(0, 4, 15, 0.85);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
    pointer-events: auto;
}

.hud-sidebar-telemetry:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.18);
}

.hud-sidebar-telemetry .hud-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 1.5px;
}

.hud-sidebar-telemetry .hud-blink {
    width: 6px;
    height: 6px;
    background-color: var(--color-green);
    border-radius: 50%;
    margin-left: auto;
    animation: hud-ping 1s infinite alternate;
}

@keyframes hud-ping {
    0% { opacity: 0.3; }
    100% { opacity: 1; box-shadow: 0 0 8px var(--color-green); }
}

.hud-sidebar-telemetry .hud-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hud-sidebar-telemetry .hud-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(0, 102, 255, 0.1);
    padding-bottom: 6px;
}

.hud-sidebar-telemetry .hud-lbl {
    color: var(--color-text-muted);
    font-weight: 500;
}

.hud-sidebar-telemetry .hud-val {
    font-weight: 600;
}

/* Floating Elements HUD overlays */
.cyber-floating-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    color: rgba(0, 240, 255, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.12;
    will-change: transform, opacity;
}

.floating-element i {
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.35);
}

.floating-hex polygon {
    stroke: rgba(0, 240, 255, 0.18);
    filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.25));
}

.floating-circuit path {
    stroke: rgba(0, 85, 255, 0.18);
}

@keyframes float-around {
    0% {
        transform: translateY(115vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 0.25;
    }
    90% {
        opacity: 0.25;
    }
    100% {
        transform: translateY(-15vh) translateX(80px) rotate(360deg);
        opacity: 0;
    }
}

/* Hide telemetry sidebar on screens under 1250px width */
@media (max-width: 1250px) {
    .hud-sidebar-telemetry {
        display: none;
    }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0.3;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   HUD NAV BAR CLOCK TELEMETRY
   ========================================== */
.nav-clock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--neon-cyan);
    background: rgba(0, 242, 254, 0.05);
    border: 1px dashed rgba(0, 242, 254, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 15px;
    text-shadow: 0 0 5px var(--neon-cyan-glow);
}

.nav-clock i {
    color: var(--neon-cyan);
}

#clock-day {
    color: var(--neon-purple);
    font-weight: 700;
}

#clock-date {
    color: #ffffff;
    opacity: 0.8;
}

#clock-time {
    color: var(--neon-cyan);
    font-weight: 700;
}

#clock-tz {
    color: var(--neon-purple);
    font-size: 11px;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .nav-clock {
        display: none;
    }
}
