        :root {
            --primary: #8a2be2;
            --secondary: #ff00ff;
            --dark: #0a0a1a;
            --light: #e6e6fa;
            --accent: #00ff00;
            --code-bg: #1e1e3f;
            --github: #333;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: 'Orbitron', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            position: relative;
            height: 200px;
            background: linear-gradient(45deg, #0a0a1a, #16213e);
            overflow: hidden;
            border-bottom: 3px solid var(--accent);
        }
        
        .header-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background-color: var(--accent);
            border-radius: 50%;
            animation: float 8s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-300px) translateX(100px);
                opacity: 0;
            }
        }
        
        .nav-bar {
            position: fixed;
            top: 10px;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 100;
            transition: background 0.3s ease-in-out;
        }
        
        .translate-button {
            position: absolute;
            right: 20px;
            top: 15px;
            background: var(--primary);
            color: var(--light);
            border: 1px solid var(--accent);
            padding: 8px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    
        .translate-button:hover {
            background: var(--accent);
            color: var(--dark);
        }
    
        .nav-links {
            display: flex;
            gap: 30px;
            background: rgba(10, 10, 26, 0.7);
            backdrop-filter: blur(10px);
            padding: 10px 30px;
            border-radius: 50px;
            border: 1px solid var(--accent);
        }

        .burger-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--light);
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent);
            text-shadow: 0 0 8px var(--accent);
        }
        
        .profile-section {
            display: flex;
            flex-wrap: wrap;
            margin-top: -80px;
            position: relative;
            z-index: 10;
        }
        
        .profile-pic {
            width: 180px;
            height: 180px;
            border-radius: 10px;
            border: 4px solid var(--accent);
            overflow: hidden;
            margin-right: 30px;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: var(--accent);
        }

        .profile-pic img {
            width: 150%;
            height: 150%;
            top: 50%;
            left: 50%;
            transform: translate(0%, 0%);
            object-fit: cover; /* Agar gambar tetap proporsional */
        }
        
        
        .profile-info {
            flex: 1;
            padding: 20px;
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
        }
        
        h1 {
            margin: 0;
            font-size: 2.5rem;
            color: var(--accent);
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
        }
        
        .tag-line {
            font-style: italic;
            color: var(--secondary);
            margin-bottom: 20px;
            border-bottom: 1px solid var(--secondary);
            padding-bottom: 10px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--light);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.7);
        }
        
        .section {
            margin-top: 40px;
            background: rgba(22, 33, 62, 0.7);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        h2 {
            color: var(--accent);
            margin-top: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        h2 i {
            font-size: 1.5rem;
        }
        
        .skill-bar {
            margin-bottom: 20px;
        }
        
        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .skill-level {
            height: 20px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .skill-level::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                rgba(255,255,255,0.1) 0%, 
                rgba(255,255,255,0.2) 20%, 
                rgba(255,255,255,0.1) 40%);
            animation: shine 2s infinite linear;
        }
        
        @keyframes shine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        
        .tech-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .tech-skill {
            background: rgba(10, 10, 26, 0.7);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .tech-skill:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
            border-color: var(--accent);
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .project-card {
            background: rgba(10, 10, 26, 0.8);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--primary);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
            border-color: var(--accent);
        }
        
        .project-image {
            height: 170px;
            background-color: var(--code-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--accent);
            border-bottom: 1px solid var(--primary);
        }
        
        .project-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .project-title {
            color: var(--secondary);
            margin-top: 0;
            font-size: 1.3rem;
        }
        
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }
        
        .project-tag {
            background: rgba(138, 43, 226, 0.3);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
        }
        
        .project-links {
            margin-top: auto;
            display: flex;
            gap: 15px;
        }
        
        .project-link {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .project-link:hover {
            text-shadow: 0 0 8px var(--accent);
        }
        
        .platforms-section {
            margin-top: 40px;
            background: rgba(22, 33, 62, 0.7);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .platform-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .platform {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(26, 26, 46, 0.8);
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            width: 100px;
        }
        
        .platform:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
        }
        
        .platform-icon {
            font-size: 40px;
            margin-bottom: 10px;
            color: var(--light);
        }
        
        .platform-name {
            font-size: 14px;
            text-align: center;
        }
        
        .github-stats {
            display: flex;
            flex-direction: column; /* Biar stacked di layar kecil */
            align-items: center;
            gap: 15px;
            padding: 20px;
            width: 100%;
            max-width: 600px;
            margin: auto;
        }
        
        .github-stats img {
            width: 100%; /* Biar fleksibel */
            max-width: 500px; /* Tetap ada batas */
            height: auto;
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .github-stat {
            flex: 1;
            min-width: 200px;
            background: rgba(10, 10, 26, 0.7);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border: 1px solid var(--github);
            transition: all 0.3s ease;
        }
        
        .github-stat:hover {
            transform: translateY(-3px);
            border-color: var(--accent);
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent);
            margin: 10px 0;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
        }
        
        .stat-label {
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            color: var(--light);
        }
        
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 25px;
            padding: 25px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--accent);
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            background: rgba(10, 10, 26, 0.7);
            border: 1px solid var(--primary);
            border-radius: 5px;
            color: var(--light);
            font-family: 'Orbitron', sans-serif;
            resize: vertical;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
        }
        
        .glow-button {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--light);
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
            transition: all 0.3s ease;
        }
        
        .glow-button:hover {
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
            transform: translateY(-2px);
        }
        
        .glow-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: button-shine 3s infinite;
        }
        
        @keyframes button-shine {
            0% {
                transform: translateX(-100%);
            }
            20%, 100% {
                transform: translateX(100%);
            }
        }
        
        footer {
            margin-top: 60px;
            text-align: center;
            padding: 30px 20px;
            border-top: 1px solid var(--primary);
            background: rgba(10, 10, 26, 0.5);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            text-shadow: 0 0 5px var(--accent);
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        @media (max-width: 768px) {
            .profile-section {
                flex-direction: column;
                align-items: center;
            }
            
            .profile-pic {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            /* Sembunyikan menu saat layar kecil */
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 10px;
                background: rgba(10, 10, 26, 0.9);
                padding: 10px;
                border-radius: 10px;
                box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.3);
            }

            .nav-links a {
                font-size: 0.8rem;
                display: block;
                padding: 10px 15px;
                text-align: center;
            }

            /* Tombol Burger */
            .burger-menu {
                display: block;
                font-size: 24px;
                cursor: pointer;
                background: none;
                border: none;
                color: var(--light);
                position: absolute;
                right: 20px;
                top: 15px;
                z-index: 1001;
            }
            
            .platform-icons {
                justify-content: center;
            }
            
            .github-stats {
                max-width: 100%; /* Ambil seluruh lebar layar */
                padding: 10px;
            }
        
            .github-stats img {
                max-width: 90%; /* Supaya tetap besar di layar kecil */
            }
        }
