
        /* ==================== 
           THEME & CSS VARIABLES
           ==================== */
        :root {
            --bg-deep: #050608;
            --bg-terminal: #0b0c10;
            --bg-window-bar: #12141c;
            --accent-cyan: #00ffcc;
            --accent-green: #27c93f;
            --accent-glow: rgba(0, 255, 204, 0.25);
            --text-white: #f5f6f9;
            --text-grey: #8d96a7;
            --border-glow: rgba(0, 255, 204, 0.15);

            --font-display: 'Space Grotesk', sans-serif;
            --font-code: 'Fira Code', monospace;
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Standard Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-white);
            font-family: var(--font-display);
            line-height: 1.6;
            overflow-x: hidden;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(0, 255, 204, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 204, 0.03) 0%, transparent 40%);
        }

        /* Scanline Overlay Effect */
        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%),
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 255, 0, 0.03));
            background-size: 100% 3px, 6px 100%;
            z-index: 9999;
            pointer-events: none;
            opacity: 0.8;
        }

        /* Typography */
        .neon-text {
            color: var(--accent-cyan);
            text-shadow: 0 0 10px var(--accent-glow);
        }

        .green-text {
            color: var(--accent-green);
        }

        .code-font {
            font-family: var(--font-code);
        }

        .hollow-text {
            color: transparent;
            -webkit-text-stroke: 1px var(--text-white);
            font-weight: 700;
        }

        /* Container Limit */
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        section {
            padding: 120px 0 60px 0;
        }

        /* ==================== 
           PREMIUM TERMINAL COMPONENT
           ==================== */
        .terminal {
            background: var(--bg-terminal);
            border: 1px solid var(--border-glow);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
            transition: var(--transition-smooth);
        }

        .terminal:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 20px 50px rgba(0, 255, 204, 0.15);
        }

        .terminal-header {
            background: var(--bg-window-bar);
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .window-controls {
            display: flex;
            gap: 8px;
        }

        .control-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot-close {
            background: #ff5f56;
        }

        .dot-minimize {
            background: #ffbd2e;
        }

        .dot-expand {
            background: #27c93f;
        }

        .window-title {
            color: var(--text-grey);
            font-family: var(--font-code);
            font-size: 0.8rem;
            letter-spacing: 0.5px;
        }

        /* UI/UX Utility Buttons */
        .cyber-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: transparent;
            color: var(--accent-cyan);
            border: 1px solid var(--accent-cyan);
            border-radius: 4px;
            font-family: var(--font-code);
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            text-transform: uppercase;
        }

        .cyber-btn:hover {
            background: var(--accent-glow);
            box-shadow: 0 0 20px var(--accent-glow);
            transform: translateY(-2px);
        }

        /* ==================== 
           NAVBAR
           ==================== */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(5, 6, 8, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--text-white);
        }

        .logo span {
            color: var(--accent-cyan);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-grey);
            text-decoration: none;
            font-family: var(--font-code);
            font-size: 0.9rem;
            transition: var(--transition-smooth);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-cyan);
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--accent-cyan);
            cursor: pointer;
        }

        /* ==================== 
           HERO SECTION 
           ==================== */
        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
            min-height: calc(100vh - 80px);
        }

        .hero-info h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-grey);
        }

        /* Interactive Console Terminal Output */
        .interactive-console {
            padding: 24px;
            min-height: 380px;
            max-height: 420px;
            overflow-y: auto;
            font-family: var(--font-code);
            font-size: 0.85rem;
            color: #a4b3c6;
        }

        .history-line {
            margin-bottom: 10px;
        }

        .terminal-prompt {
            color: var(--accent-green);
        }

        .input-line-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
        }

        .terminal-input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-white);
            font-family: var(--font-code);
            font-size: 0.85rem;
            width: 100%;
        }

        /* ==================== 
           TABBED EXPERIENCE SECTION 
           ==================== */
        .exp-workspace {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 30px;
            margin-top: 50px;
        }

        .workspace-tabs {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .workspace-tab-btn {
            background: var(--bg-terminal);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 16px 20px;
            border-radius: 8px;
            color: var(--text-grey);
            font-family: var(--font-code);
            font-size: 0.85rem;
            text-align: left;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .workspace-tab-btn:hover {
            border-color: rgba(0, 255, 204, 0.3);
            color: var(--text-white);
        }

        .workspace-tab-btn.active {
            border-color: var(--accent-cyan);
            background: rgba(0, 255, 204, 0.03);
            color: var(--accent-cyan);
            box-shadow: inset 4px 0 0 var(--accent-cyan);
        }

        .workspace-panel {
            display: none;
        }

        .workspace-panel.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        .workspace-body {
            padding: 30px;
        }

        .workspace-body h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .workspace-body .company-meta {
            font-family: var(--font-code);
            font-size: 0.9rem;
            color: var(--accent-cyan);
            margin-bottom: 25px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .workspace-body ul {
            list-style: none;
        }

        .workspace-body ul li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 15px;
            color: var(--text-grey);
            font-size: 0.95rem;
        }

        .workspace-body ul li::before {
            content: ">>";
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-family: var(--font-code);
            font-size: 0.8rem;
            top: 2px;
        }

        /* ==================== 
           PROJECTS GRID
           ==================== */
        .projects-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .projects-header h2 {
            font-size: 2.8rem;
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 30px;
        }

        .project-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .project-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .project-tag {
            font-family: var(--font-code);
            font-size: 0.75rem;
            background: rgba(0, 255, 204, 0.05);
            color: var(--accent-cyan);
            padding: 4px 10px;
            border-radius: 4px;
            border: 1px solid rgba(0, 255, 204, 0.15);
        }

        .project-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        .project-desc {
            color: var(--text-grey);
            font-size: 0.9rem;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .project-links {
            display: flex;
            gap: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 15px;
        }

        .project-links a {
            color: var(--text-grey);
            font-size: 1.3rem;
            transition: var(--transition-smooth);
        }

        .project-links a:hover {
            color: var(--accent-cyan);
        }

        /* ==================== 
           SKILLS & DECORATIONS 
           ==================== */
        .skills-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 60px;
        }

        .skill-group {
            margin-bottom: 20px;
        }

        .skill-group-title {
            font-family: var(--font-code);
            font-size: 0.95rem;
            color: var(--accent-cyan);
            margin-bottom: 15px;
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .skill-pill {
            background: #0f111a;
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 8px 16px;
            border-radius: 6px;
            font-family: var(--font-code);
            font-size: 0.8rem;
            color: var(--text-white);
            transition: var(--transition-smooth);
        }

        .skill-pill:hover {
            border-color: var(--accent-cyan);
            background: var(--accent-glow);
            transform: translateY(-2px);
        }

        /* Achievements & Educations List */
        .ach-edu-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .ach-edu-icon {
            font-size: 1.8rem;
            color: var(--accent-cyan);
            margin-top: 4px;
        }

        .ach-edu-details h4 {
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .ach-edu-details span {
            font-family: var(--font-code);
            font-size: 0.8rem;
            color: var(--accent-green);
        }

        .ach-edu-details p {
            color: var(--text-grey);
            font-size: 0.9rem;
            margin-top: 5px;
        }

        /* ==================== 
           CONTACT FORM & FOOTER
           ==================== */
        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-details h3 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .contact-details p {
            color: var(--text-grey);
            margin-bottom: 40px;
            max-width: 480px;
        }

        .contact-method {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-method i {
            font-size: 1.5rem;
            color: var(--accent-cyan);
            background: #0f111a;
            padding: 12px;
            border-radius: 8px;
        }

        .contact-method div h5 {
            font-family: var(--font-code);
            font-size: 0.8rem;
            color: var(--text-grey);
        }

        .contact-method div p {
            font-size: 1.1rem;
            color: var(--text-white);
            margin-bottom: 0;
        }

        .terminal-form {
            padding: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .input-group label {
            font-family: var(--font-code);
            font-size: 0.75rem;
            color: var(--text-grey);
        }

        .input-group input,
        .input-group textarea {
            background: #0f111a;
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 12px;
            border-radius: 6px;
            color: var(--text-white);
            font-family: var(--font-code);
            font-size: 0.85rem;
            outline: none;
            transition: var(--transition-smooth);
        }

        .input-group input:focus,
        .input-group textarea:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 255, 204, 0.1);
        }

        footer {
            background: #030406;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            padding: 60px 0 30px;
            text-align: center;
            margin-top: 100px;
        }

        .huge-logo-text {
            font-size: 6vw;
            font-weight: 700;
            text-transform: uppercase;
            overflow: hidden;
            white-space: nowrap;
            margin-bottom: 30px;
        }

        .huge-logo-text span {
            -webkit-text-stroke: 1px var(--accent-cyan);
            color: transparent;
        }

        .footer-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-code);
            font-size: 0.8rem;
            color: var(--text-grey);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            padding-top: 30px;
        }

        .footer-socials {
            display: flex;
            gap: 20px;
        }

        .footer-socials a {
            color: var(--text-grey);
            font-size: 1.2rem;
            transition: var(--transition-smooth);
        }

        .footer-socials a:hover {
            color: var(--accent-cyan);
        }

        /* Animation Keyframes */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition-smooth);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ==================== 
           RESPONSIVE CODE
           ==================== */

        /* --- Mobile Nav Slide Animation --- */
        .nav-links {
            transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        opacity 0.35s ease,
                        padding 0.35s ease;
        }

        /* --- Large Tablets & Small Desktops (max-width: 1200px) --- */
        @media (max-width: 1200px) {
            .container {
                padding: 0 20px;
            }

            .hero-info h1 {
                font-size: 3.4rem;
            }

            .hero-grid {
                gap: 30px;
            }

            .project-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }

            .contact-details h3 {
                font-size: 2.4rem;
            }
        }

        /* --- Tablets (max-width: 992px) --- */
        @media (max-width: 992px) {
            section {
                padding: 90px 0 50px 0;
            }

            .hero-grid,
            .exp-workspace,
            .skills-wrapper,
            .contact-section {
                grid-template-columns: 1fr;
            }

            .hero-grid {
                min-height: auto;
                padding-top: 100px;
                padding-bottom: 40px;
            }

            .hero-info h1 {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.05rem;
            }

            .workspace-tabs {
                flex-direction: row;
                overflow-x: auto;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .workspace-tabs::-webkit-scrollbar {
                display: none;
            }

            .workspace-tab-btn {
                white-space: nowrap;
                min-width: max-content;
                padding: 14px 18px;
            }

            .projects-header h2 {
                font-size: 2.2rem;
            }

            .project-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 24px;
            }

            .contact-details h3 {
                font-size: 2.2rem;
            }

            .huge-logo-text {
                font-size: 8vw;
            }

            .exp-workspace {
                gap: 20px;
                margin-top: 30px;
            }

            .skills-wrapper {
                gap: 24px;
                margin-top: 40px;
            }
        }

        /* --- Small Tablets / Large Phones (max-width: 768px) --- */
        @media (max-width: 768px) {
            .nav-wrapper {
                height: 70px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(5, 6, 8, 0.97);
                backdrop-filter: blur(16px);
                border-bottom: 1px solid rgba(0, 255, 204, 0.1);
                flex-direction: column;
                padding: 24px 30px;
                text-align: center;
                gap: 8px;
                z-index: 999;
            }

            .nav-links.mobile-active {
                display: flex;
                animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-12px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .nav-links a {
                display: block;
                padding: 12px 0;
                font-size: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            }

            .nav-links li:last-child a {
                border-bottom: none;
            }

            .menu-toggle {
                display: block;
                font-size: 2rem;
                padding: 8px;
                -webkit-tap-highlight-color: transparent;
            }

            section {
                padding: 80px 0 40px 0;
            }

            .hero-grid {
                padding-top: 80px;
            }

            .hero-info h1 {
                font-size: 2.4rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 24px;
            }

            .interactive-console {
                min-height: 280px;
                max-height: 320px;
                padding: 18px;
                font-size: 0.8rem;
            }

            .workspace-body {
                padding: 22px;
            }

            .workspace-body h3 {
                font-size: 1.5rem;
            }

            .workspace-body .company-meta {
                font-size: 0.8rem;
                flex-direction: column;
                gap: 4px;
            }

            .workspace-body ul li {
                font-size: 0.88rem;
                margin-bottom: 12px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-section {
                gap: 36px;
            }

            .contact-details h3 {
                font-size: 2rem;
            }

            .contact-method {
                gap: 16px;
            }

            .footer-info {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .huge-logo-text {
                font-size: 10vw;
                white-space: normal;
                word-break: break-word;
                line-height: 1.15;
            }

            .projects-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 30px;
            }

            .projects-header h2 {
                font-size: 2rem;
            }

            .cyber-btn {
                padding: 12px 20px;
                font-size: 0.8rem;
                min-height: 44px;
            }

            .terminal-form {
                padding: 22px;
            }

            .terminal-header {
                padding: 10px 16px;
            }

            .terminal-form .terminal-header {
                margin: -22px -22px 18px -22px;
            }

            footer {
                padding: 40px 0 24px;
                margin-top: 60px;
            }
        }

        /* --- Phones (max-width: 480px) --- */
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            section {
                padding: 70px 0 30px 0;
            }

            .hero-grid {
                padding-top: 70px;
                gap: 24px;
            }

            .hero-info h1 {
                font-size: 2rem;
                line-height: 1.15;
            }

            .hero-subtitle {
                font-size: 0.92rem;
                margin-bottom: 20px;
            }

            .interactive-console {
                min-height: 240px;
                max-height: 280px;
                padding: 14px;
                font-size: 0.75rem;
            }

            .terminal-prompt {
                font-size: 0.75rem;
            }

            .terminal-input {
                font-size: 0.78rem;
            }

            .workspace-body {
                padding: 18px;
            }

            .workspace-body h3 {
                font-size: 1.3rem;
            }

            .workspace-tab-btn {
                font-size: 0.78rem;
                padding: 12px 14px;
            }

            .project-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .project-card h3 {
                font-size: 1.2rem;
            }

            .project-desc {
                font-size: 0.85rem;
            }

            .project-tag {
                font-size: 0.7rem;
                padding: 3px 8px;
            }

            .skill-pill {
                padding: 6px 12px;
                font-size: 0.75rem;
            }

            .skill-group-title {
                font-size: 0.85rem;
            }

            .ach-edu-item {
                gap: 14px;
            }

            .ach-edu-icon {
                font-size: 1.5rem;
            }

            .ach-edu-details h4 {
                font-size: 1rem;
            }

            .ach-edu-details p {
                font-size: 0.85rem;
            }

            .contact-details h3 {
                font-size: 1.7rem;
            }

            .contact-details p {
                font-size: 0.9rem;
            }

            .contact-method div p {
                font-size: 0.95rem;
            }

            .contact-method i {
                font-size: 1.3rem;
                padding: 10px;
            }

            .input-group input,
            .input-group textarea {
                padding: 11px;
                font-size: 0.8rem;
            }

            .input-group label {
                font-size: 0.7rem;
            }

            .terminal-form {
                padding: 18px;
            }

            .terminal-form .terminal-header {
                margin: -18px -18px 16px -18px;
            }

            .huge-logo-text {
                font-size: 12vw;
            }

            .footer-info {
                font-size: 0.72rem;
            }

            .footer-socials {
                gap: 16px;
            }

            .footer-socials a {
                font-size: 1.4rem;
                padding: 4px;
            }

            footer {
                padding: 30px 0 20px;
                margin-top: 50px;
            }

            .window-title {
                font-size: 0.7rem;
            }

            .control-dot {
                width: 10px;
                height: 10px;
            }

            .terminal {
                border-radius: 10px;
            }
        }

        /* --- Very Small Phones (max-width: 360px) --- */
        @media (max-width: 360px) {
            .container {
                padding: 0 12px;
            }

            .hero-info h1 {
                font-size: 1.7rem;
            }

            .hero-subtitle {
                font-size: 0.85rem;
            }

            .cyber-btn {
                padding: 10px 16px;
                font-size: 0.75rem;
                gap: 6px;
            }

            .interactive-console {
                min-height: 200px;
                max-height: 240px;
                padding: 12px;
                font-size: 0.72rem;
            }

            .workspace-body h3 {
                font-size: 1.15rem;
            }

            .projects-header h2,
            .contact-details h3 {
                font-size: 1.5rem;
            }

            h2[style*="font-size: 2.8rem"] {
                font-size: 1.6rem !important;
            }

            .huge-logo-text {
                font-size: 14vw;
            }

            .nav-wrapper {
                height: 60px;
            }

            .nav-links {
                top: 60px;
            }

            .logo {
                font-size: 1.15rem;
            }
        }

        /* --- Touch Device Enhancements --- */
        @media (hover: none) and (pointer: coarse) {
            .cyber-btn {
                min-height: 44px;
                min-width: 44px;
            }

            .workspace-tab-btn {
                min-height: 44px;
            }

            .nav-links a {
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .skill-pill:hover {
                transform: none;
            }

            .terminal:hover {
                border-color: var(--border-glow);
                box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
            }
        }

        /* --- Safe Area for Notched Phones --- */
        @supports (padding: env(safe-area-inset-bottom)) {
            footer {
                padding-bottom: calc(20px + env(safe-area-inset-bottom));
            }

            header {
                padding-top: env(safe-area-inset-top);
            }
        }
    /* ==================== 
   BOOT SEQUENCE & NEW ELEMENTS 
   ==================== */

.boot-sequence {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #27c93f;
    font-family: var(--font-code);
    font-size: 0.9rem;
    z-index: 99999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.boot-sequence.hidden {
    opacity: 0;
}
.boot-line {
    margin-bottom: 5px;
    opacity: 0;
}

/* Dashboard Widgets */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}
.stat-label {
    font-family: var(--font-code);
    font-size: 0.85rem;
    color: var(--text-grey);
}

/* Heatmap */
.heatmap-container {
    background: var(--bg-terminal);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
}
.heatmap-grid {
    display: grid;
    grid-template-rows: repeat(7, 1fr);
    grid-auto-flow: column;
    gap: 4px;
    min-width: max-content;
}
.heatmap-cell {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
}
.heatmap-cell[data-level="1"] { background: rgba(0, 255, 204, 0.2); }
.heatmap-cell[data-level="2"] { background: rgba(0, 255, 204, 0.4); }
.heatmap-cell[data-level="3"] { background: rgba(0, 255, 204, 0.6); }
.heatmap-cell[data-level="4"] { background: rgba(0, 255, 204, 0.8); }
.heatmap-cell[data-level="5"] { background: var(--accent-cyan); }

/* ASCII Headers */
.ascii-header {
    color: var(--accent-cyan);
    font-family: var(--font-code);
    white-space: pre;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    overflow-x: hidden;
}

/* Page Transitions */
.page-transition {
    opacity: 0;
    animation: pageFadeIn 0.4s forwards;
}
@keyframes pageFadeIn {
    to { opacity: 1; }
}

/* Project Detail Specific */
.project-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid var(--border-glow);
}
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 30px var(--accent-glow);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.1);
}
.gallery-img:hover {
    border-color: var(--accent-cyan);
    transform: scale(1.02);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(0, 255, 204, 0.2);
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-dot {
    position: absolute;
    left: -37px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-glow);
}
/* Skill Bars */
.skill-bar-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    height: 8px;
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}
.skill-bar-fill {
    height: 100%;
    background: var(--accent-cyan);
    width: 0;
    transition: width 1s ease-out;
}

/* ==================== 
   PREMIUM PROJECT DETAIL UI
   ==================== */

.project-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--border-glow);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.project-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.project-hero:hover .project-hero-bg {
    transform: scale(1);
}

.project-hero-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 60px 40px 40px 40px;
    background: linear-gradient(to top, var(--bg-deep) 10%, transparent);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    letter-spacing: -1px;
}

/* Bento Box Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.bento-item {
    background: var(--bg-terminal);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.05);
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-meta {
    grid-column: span 4;
}

.bento-main {
    grid-column: span 8;
}

.bento-feature {
    grid-column: span 6;
}

.bento-gallery {
    grid-column: span 12;
}

@media (max-width: 992px) {
    .bento-meta, .bento-main, .bento-feature, .bento-gallery {
        grid-column: span 12;
    }
    .project-hero-title {
        font-size: 2.5rem;
    }
}

.glass-panel {
    background: rgba(11, 12, 16, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
}

.feature-icon-wrapper {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(0, 255, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

/* Mac-style Window dots inline */
.inline-dots {
    display: flex; gap: 6px; margin-bottom: 20px;
}
.inline-dots span {
    width: 12px; height: 12px; border-radius: 50%;
}
.dot-r { background: #ff5f56; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #27c93f; }

/* ==================== 
   INTERACTIVE WINDOW STATES & UTILS
   ==================== */
.window-minimized .workspace-body, 
.window-minimized .interactive-console, 
.window-minimized .terminal-body,
.window-minimized .project-hero,
.window-minimized .bento-grid,
.window-minimized form,
.window-minimized img {
    display: none !important;
}

.window-minimized {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
}

.window-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-grey);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}
.copy-btn:hover {
    color: var(--accent-cyan);
    background: rgba(0, 255, 204, 0.1);
}
