* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
            background: #000000;
            color: #fbff00;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        /* Subtle background pattern */
        .subtle-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            background: radial-gradient(circle at 25% 25%, #00ff0010 0%, transparent 50%),
                        radial-gradient(circle at 75% 75%, #00ffff08 0%, transparent 50%);
            pointer-events: none;
        }

        /* Terminal cursor blink */
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .cursor {
            display: inline-block;
            background-color: #fffb00;
            width: 10px;
            height: 20px;
            animation: blink 1s infinite;
            margin-left: 2px;
        }

        /* Decrypt text styles */
        .decrypt-text {
            white-space: pre-wrap;
            overflow-wrap: break-word;
            width: 100%;
            min-height: 1.2em;
            visibility: hidden;
        }

        .word-wrapper {
            display: inline-block;
            white-space: nowrap;
        }

        .char-wrapper {
            display: inline;
            width: auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Terminal header */
        .terminal-header {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px 8px 0 0;
            padding: 10px 15px;
            margin-bottom: 0;
            color: #888;
            font-size: 0.9em;
            display: flex;
            align-items: center;
            justify-content: space-between;
    }

        .terminal-controls {
            display: flex;
            gap: 8px;
        }
        

        .terminal-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .btn-close { background: #1eff00;box-shadow: 0 0 6px #00ff00; }
        .btn-minimize { background: #ffae00;box-shadow: 0 0 6px #ffae00; }
        .btn-maximize { background: #ff0000;box-shadow: 0 0 6px #ff0000; }

        /* Main terminal window */
        .terminal {
            background: #000000;
            border: 1px solid #333;
            border-top: none;
            border-radius: 0 0 8px 8px;
            padding: 20px;
            flex: 1;
            font-family: 'JetBrains Mono', monospace;
            position: relative;
        }

        /* Navigation as terminal commands */
        .nav {
            text-align: center;
            margin-bottom: 30px;
            color: #00ff00;
        }

        .nav-line {
            margin-bottom: 5px;
            font-size: 0.9em;
        }

        .nav-line .prompt {
            color: #ff0000;
        }

        .nav-line .command {
            color: #09ff00;
        }

        .nav a {
            color: #fbff00;
            text-decoration: none;
            margin-right: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav a:hover {
            color: #ffffff;
            text-shadow: 0 0 10px #ffee00;
        }

        .nav a::before {
            content: '> ';
            color: #ff0000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav a:hover::before {
            opacity: 1;
        }

        /* Content layout */
        .content {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            margin: 30px 0;
            justify-content: center;
        }

        /* Profile image with hacker styling - removed hue rotation */
        .pfp-container {
            position: relative;
            flex-shrink: 0;
        }

        .pfp-container img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 2px solid #fffb00;
            filter: 
                contrast(1.2) 
                brightness(0.9);
            box-shadow: 
                0 0 20px #7a78008a,
                inset 0 0 20px #7a780022;
            transition: all 0.3s ease;
            padding: 10px;
        }

        .pfp-container:hover img {
            border-color: #8C00FF;
            box-shadow: 
                0 0 30px #9900ff50,
                inset 0 0 30px #9900ff20;
            filter: 
                contrast(1.3) 
                brightness(1.1);
        }

        .pfp-container::before {
    content: "卐";
    position: absolute;
    top: 9%;
    left: 50%;
    font-size: 30px;
    font-weight: bold;
    color: rgba(255, 0, 0, 0.521);
    z-index: 1;
    animation: rotatePlus 3s linear infinite;
}

/* Define smooth rotation */
@keyframes rotatePlus {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hover Effect */
.pfp-container:hover::before {
    text-shadow: 
        0 0 5px #ff0000,
        0 0 1px #ff0000;
}

        /* Text content styling */
        .text-content {
            flex: 1;
            color: #ffffff;
        }

        .text-content h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            color: #ffd900;
            text-transform: lowercase;
            font-weight: 700;
            letter-spacing: 2px;
            position: relative;
        }

        .text-content h1::after {
            content: '';
            display: inline-block;
            width: 15px;
            height: 25px;
            background: #fffb00;
            margin-left: 5px;
            animation: blink 1s infinite;
        }

        .text-content h2 {
            color: #09ff00;
            font-size: 1.1em;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .text-content h2::before {
            content: '// ';
            color: #666;
        }

        .text-content p {
            margin-bottom: 15px;
            color: #cccccc;
            font-size: 0.95em;
            line-height: 1.7;
        }

        /*Skills section*/
.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.skill {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #3f3f46;
    border-radius: 4px;
    color: #ffffff;
    transition: all 0.3s ease;
    }

.skill:hover {
    background-color: #18181b;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

        /* Social links */
        .social-container {
            margin-top: 30px;
        }

        .social-header {
            color: #fffb00;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .social-header::before {
            color: #666;
        }

        .social {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 30px;
        }

        .social a {
            display: inline-block;
            padding: 5px 10px;
            background: transparent;
            border: 1px solid #ffffff;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }

        .social a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .social a:hover {
            color: #000000;
            background: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,255,255,0.3);
        }

        .social a:hover::before {
            left: 100%;
        }

        /*spotify*/
       .spotify-container {
    width: 300px;
    margin-top: 15.5px;
    position: relative;
    opacity: 0.50;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
   
}
.spotify-container iframe {
    width: 100%;
    background: #000;
    transition: all 0.2s ease;
}

/* Hover effects */
.spotify-container:hover {
    opacity: 1;
}

.spotify-container:hover iframe {
    transform: translateY(-2px);
}
    
      /* Mobile responsiveness */
        @media (max-width: 768px) {
            .content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 30px;
            }

            .pfp-container img {
                width: 250px;
                height: 250px;
            }

            .text-content h1 {
                font-size: 2em;
            }

            .nav a {
                display: block;
                margin: 5px 0;
            }

            .social {
                gap: 10px;
            }
        }
