    /* =========================================
           GALAXY CORE ENGINE (CSS VARIABLES)
        ========================================= */
        :root {
            --neon-blue: #00d9ff;
            --neon-gold: #ffaa00;
            --deep-space: #050505;
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(0, 217, 255, 0.1);
            --font-main: 'JetBrains Mono', monospace;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* =========================================
           SYSTEM RESET & BACKGROUND
        ========================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

      

        /* Animated Star Field */
        .universe-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 170, 0, 0.08) 0%, transparent 40%) !important; 
        }

        .stars {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            opacity: 0.3;
            animation: twinkle var(--duration) infinite;
        }

     
        /* =========================================
           MAIN LAYOUT (THE GRID)
        ========================================= */
        .page-wrapper {
            max-width: 1200px;
            margin: 120px auto 50px;
            padding: 0 20px;
        }

        .about-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease;
        }

        .tech-id {
            color: var(--neon-gold);
            font-size: 14px;
            letter-spacing: 5px;
            margin-bottom: 10px;
        }

        .glitch-name {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            text-transform: uppercase;
            background: linear-gradient(to right, #fff, var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        /* =========================================
           DATA BLOCKS (MODULES)
        ========================================= */
        .grid-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 30px;
        }

        .module {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            padding: 40px;
            position: relative;
            backdrop-filter: blur(10px);
            animation: fadeInUp 1s ease backwards;
            transition: var(--transition);
        }

        .module:hover {
            border-color: rgba(0, 217, 255, 0.4);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transform: translateY(-5px);
        }

        /* Tech Corners Decor */
        .module::before {
            content: "";
            position: absolute;
            top: -1px; left: -1px;
            width: 20px; height: 20px;
            border-top: 3px solid var(--neon-blue);
            border-left: 3px solid var(--neon-blue);
        }

        .module::after {
            content: "";
            position: absolute;
            bottom: -1px; right: -1px;
            width: 20px; height: 20px;
            border-bottom: 3px solid var(--neon-gold);
            border-right: 3px solid var(--neon-gold);
        }

        .module-title {
            font-size: 13px;
            letter-spacing: 4px;
            color: var(--neon-blue);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .module-title i { font-size: 16px; }

        /* =========================================
           CONTENT STYLING
        ========================================= */
        .summary-box p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.8;
        }

        .timeline-item {
            border-left: 1px dashed rgba(0, 217, 255, 0.3);
            padding-left: 25px;
            margin-bottom: 30px;
            position: relative;
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: -5px; top: 0;
            width: 9px; height: 9px;
            background: var(--neon-gold);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--neon-gold);
        }

        .time-date {
            font-size: 10px;
            color: var(--neon-gold);
            display: block;
            margin-bottom: 5px;
        }

        .entry-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .skill-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .skill-tag {
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            font-size: 11px;
            text-align: center;
            background: rgba(0, 217, 255, 0.03);
            transition: var(--transition);
        }

        .skill-tag:hover {
            background: var(--neon-blue);
            color: #000;
            font-weight: 700;
        }

        /* =========================================
           HOBBIES (FLOATING UI)
        ========================================= */
        .hobby-container {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }

        .hobby-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: float 4s ease-in-out infinite;
        }

        .hobby-card i {
            font-size: 28px;
            color: var(--neon-gold);
            filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.4));
        }

        .hobby-card span {
            font-size: 10px;
            opacity: 0.7;
            letter-spacing: 2px;
        }

        /* =========================================
           ANIMATIONS
        ========================================= */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); filter: blur(10px); }
            to { opacity: 1; transform: translateY(0); filter: blur(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .grid-container { grid-template-columns: 1fr; }
        }
    