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

    body {
        font-family: 'Courier New', monospace;
        background: #0a0a0f;
        color: #00ff88;
        overflow-x: hidden;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #0a0a0f;
    }

    ::-webkit-scrollbar-thumb {
        background: #00ff88;
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #00cc6a;
    }

    /* Scanline effect */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #00ff88, transparent);
        animation: scanline 2s linear infinite;
        z-index: 9999;
        pointer-events: none;
    }

    @keyframes scanline {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    /* Grid background */
    .grid-bg {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        pointer-events: none;
        animation: gridMove 20s linear infinite;
        z-index: 0;
    }

    @keyframes gridMove {
        0% { transform: translate(0, 0); }
        100% { transform: translate(50px, 50px); }
    }

    /* Particles */
    .particles {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 1;
    }

    .particle {
        position: absolute;
        width: 3px;
        height: 3px;
        background: #00ff88;
        border-radius: 50%;
        box-shadow: 0 0 10px #00ff88;
    }

    .particle:nth-child(1) { top: 20%; left: 10%; animation: twinkle 2s ease-in-out infinite; }
    .particle:nth-child(2) { top: 40%; left: 80%; animation: twinkle 3s ease-in-out infinite 0.5s; }
    .particle:nth-child(3) { top: 60%; left: 20%; animation: twinkle 2.5s ease-in-out infinite 1s; }
    .particle:nth-child(4) { top: 80%; left: 70%; animation: twinkle 3.5s ease-in-out infinite 1.5s; }
    .particle:nth-child(5) { top: 30%; left: 50%; animation: twinkle 2.8s ease-in-out infinite 0.8s; }
    .particle:nth-child(6) { top: 70%; left: 90%; animation: twinkle 3.2s ease-in-out infinite 1.2s; }
    .particle:nth-child(7) { top: 10%; left: 60%; animation: twinkle 2.3s ease-in-out infinite 0.3s; }
    .particle:nth-child(8) { top: 50%; left: 30%; animation: twinkle 3.7s ease-in-out infinite 1.8s; }

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

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 25px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(10, 10, 15, 0.8);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 255, 136, 0.2);
        z-index: 1000;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #00ff88;
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }

    .nav-links {
        display: flex;
        gap: 30px;
        list-style: none;
    }

    .nav-links a {
        color: #00ff88;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 8px 15px;
        border: 1px solid transparent;
    }

    .nav-links a:hover {
        border: 1px solid #00ff88;
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    }

    /* Sections */
    section {
        min-height: 100vh;
        padding: 120px 60px 80px;
        position: relative;
        z-index: 10;
    }

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

    /* Hero Section */
    #hero {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 5rem;
        font-weight: 700;
        color: #00ff88;
        margin-bottom: 20px;
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3);
        opacity: 0;
        animation: glitchIn 1s ease forwards;
    }

    @keyframes glitchIn {
        0% { 
            opacity: 0; 
            transform: translateX(-20px); 
            text-shadow: 10px 0 10px rgba(255, 0, 136, 0.5);
        }
        20% {
            text-shadow: -10px 0 10px rgba(0, 255, 255, 0.5);
        }
        40% {
            text-shadow: 5px 0 10px rgba(255, 0, 136, 0.5);
        }
        60% {
            text-shadow: -5px 0 10px rgba(0, 255, 255, 0.5);
        }
        100% { 
            opacity: 1; 
            transform: translateX(0);
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3);
        }
    }

    .hero-subtitle {
        font-size: 1.5rem;
        color: #66ffaa;
        margin-bottom: 40px;
        opacity: 0;
        animation: fadeIn 1s ease 0.5s forwards;
    }

    @keyframes fadeIn {
        to { opacity: 1; }
    }

    .terminal {
        background: #0f0f23;
        border: 1px solid #00ff88;
        border-radius: 8px;
        padding: 30px;
        margin-top: 40px;
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.2), inset 0 0 30px rgba(0, 255, 136, 0.05);
        position: relative;
        max-width: 800px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease 0.8s forwards;
        text-align: left;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .terminal::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #00ff88, transparent, #00ff88);
        border-radius: 8px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .terminal:hover::before {
        opacity: 0.5;
    }

    .terminal-header {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
    }

    .terminal-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #00ff88;
        opacity: 0.3;
    }

    .terminal-btn:nth-child(1) { background: #ff5f56; }
    .terminal-btn:nth-child(2) { background: #ffbd2e; }
    .terminal-btn:nth-child(3) { background: #27c93f; }

    .terminal-line {
        margin-bottom: 15px;
        opacity: 0;
        animation: typeLine 0.5s ease forwards;
    }

    .terminal-line:nth-child(2) { animation-delay: 1s; }
    .terminal-line:nth-child(3) { animation-delay: 1.2s; }
    .terminal-line:nth-child(4) { animation-delay: 1.4s; }
    .terminal-line:nth-child(5) { animation-delay: 1.6s; }
    .terminal-line:nth-child(6) { animation-delay: 1.8s; }
    .terminal-line:nth-child(7) { animation-delay: 2s; }

    @keyframes typeLine {
        to { opacity: 1; }
    }

    .prompt {
        color: #66ffaa;
        margin-right: 10px;
    }

    .cursor {
        display: inline-block;
        width: 10px;
        height: 20px;
        background: #00ff88;
        animation: blink 1s infinite;
        box-shadow: 0 0 10px #00ff88;
        margin-left: 5px;
    }

    @keyframes blink {
        0%, 50% { opacity: 1; }
        51%, 100% { opacity: 0; }
    }

    /* Section Headers */
    .section-header {
        font-size: 3rem;
        color: #00ff88;
        margin-bottom: 50px;
        text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
        position: relative;
        display: inline-block;
    }

    .section-header::before {
        content: '//';
        margin-right: 15px;
        color: #0a0;
    }

    .section-header::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #00ff88, transparent);
    }

    /* About Section */
    #about {
        background: rgba(15, 15, 35, 0.3);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-text {
        color: #66ffaa;
        line-height: 1.8;
        font-size: 1.1rem;
    }

    .about-text p {
        margin-bottom: 20px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .stat-box {
        background: rgba(0, 255, 136, 0.05);
        border: 1px solid #00ff88;
        padding: 30px;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .stat-box:hover {
        background: rgba(0, 255, 136, 0.1);
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: 3rem;
        color: #00ff88;
        font-weight: bold;
        display: block;
        margin-bottom: 10px;
    }

    .stat-label {
        color: #66ffaa;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* Projects Section */
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .project-card {
        background: rgba(15, 15, 35, 0.6);
        border: 1px solid rgba(0, 255, 136, 0.3);
        border-radius: 12px;
        padding: 30px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

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

    .project-card:hover::before {
        left: 100%;
    }

    .project-card:hover {
        border-color: #00ff88;
        box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
        transform: translateY(-10px);
    }

    .project-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .project-title {
        font-size: 1.8rem;
        color: #00ff88;
        margin-bottom: 15px;
    }

    .project-desc {
        color: #66ffaa;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .project-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .tag {
        background: rgba(0, 255, 136, 0.1);
        border: 1px solid #00ff88;
        padding: 5px 12px;
        border-radius: 4px;
        font-size: 0.85rem;
        color: #00ff88;
    }

    .project-link {
        display: inline-block;
        color: #00ff88;
        text-decoration: none;
        padding: 10px 25px;
        border: 1px solid #00ff88;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .project-link:hover {
        background: #00ff88;
        color: #0a0a0f;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }

    /* Skills Section */
    #skills {
        background: rgba(15, 15, 35, 0.3);
    }

    .skills-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .skill-category h3 {
        color: #00ff88;
        font-size: 1.5rem;
        margin-bottom: 25px;
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }

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

    .skill-item {
        background: rgba(0, 255, 136, 0.05);
        border: 1px solid #00ff88;
        padding: 20px;
        border-radius: 6px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .skill-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(0, 255, 136, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s, height 0.5s;
    }

    .skill-item:hover {
        background: rgba(0, 255, 136, 0.15);
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
        transform: translateY(-5px) scale(1.05);
        border-color: #0ff;
        color: #0ff;
    }

    .skill-item:hover::before {
        width: 200%;
        height: 200%;
    }

    /* Contact Section */
    .contact-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-text {
        color: #66ffaa;
        font-size: 1.2rem;
        margin-bottom: 40px;
        line-height: 1.8;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .contact-box {
        background: rgba(15, 15, 35, 0.6);
        border: 1px solid #00ff88;
        padding: 40px 30px;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-box:hover {
        background: rgba(0, 255, 136, 0.1);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
        transform: translateY(-10px);
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px auto;
        fill: #00ff88;
        transition: all 0.3s ease;
        display: block;
    }

    .contact-box:hover .contact-icon {
        fill: #00cc6a;
        transform: scale(1.1);
    }

    .contact-label {
        color: #00ff88;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .contact-info {
        color: #66ffaa;
    }

    .contact-box a {
        color: #66ffaa;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-box a:hover {
        color: #00ff88;
    }

    /* Footer */
    footer {
        background: rgba(10, 10, 15, 0.9);
        border-top: 1px solid rgba(0, 255, 136, 0.2);
        padding: 30px 60px;
        text-align: center;
        color: #66ffaa;
        position: relative;
        z-index: 10;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: 1px solid #00ff88;
        color: #00ff88;
        font-size: 1.5rem;
        padding: 8px 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        background: rgba(0, 255, 136, 0.1);
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        nav {
            padding: 20px 30px;
        }

        .mobile-menu-btn {
            display: block;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(10, 10, 15, 0.95);
            flex-direction: column;
            padding: 20px;
            border-bottom: 1px solid rgba(0, 255, 136, 0.2);
        }

        .nav-links.active {
            display: flex;
        }

        section {
            padding: 100px 30px 60px;
        }

        h1 {
            font-size: 3rem;
        }

        .section-header {
            font-size: 2rem;
        }

        .about-content,
        .skills-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .projects-grid {
            grid-template-columns: 1fr;
        }

        .stats-grid,
        .skill-list {
            grid-template-columns: 1fr;
        }

        .terminal {
            padding: 20px;
        }
    }

    @media (max-width: 568px) {
        h1 {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        section {
            padding: 80px 20px 40px;
        }

        nav {
            padding: 15px 20px;
        }

        .logo {
            font-size: 1.2rem;
        }
    }
