        :root {
            --dark-navy: #0a192f;
            --navy: #112240;
            --light-navy: #233554;
            --lightest-navy: #303c55;
            --slate: #8892b0;
            --light-slate: #a8b2d1;
            --lightest-slate: #ccd6f6;
            --white: #e6f1ff;
            --accent: #64ffda;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

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

        body {
            font-family: var(--font-sans);
            background-image: url("../assets/raiden.png") !important;
            background-size: cover;
            color: var(--light-slate);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(5px);
            background-color: rgba(10, 25, 47, 0.5);
            z-index: -1;
        }

        video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0;
        }

        main {
            flex-grow: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .about-container {
            max-width: 800px;
            width: 100%;
            text-align: center;
            animation: animasiMasuk .5s ease-in-out;
        }

        .profile-picture {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid var(--accent);
            padding: 5px;
            margin-bottom: 20px;
            object-fit: cover;
            box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
        }

        .about-container h1 {
            color: var(--lightest-slate);
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .about-container h1 span {
            color: var(--accent);
        }

        .about-container .subtitle {
            font-size: 1.2rem;
            color: var(--slate);
            margin-bottom: 25px;
        }

        .about-container .bio {
            font-size: 1rem;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto 30px auto;
            color: var(--light-slate);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
        }


        .social-links a {
            color: var(--slate);
            font-size: 1.5rem;
        }

        .social-links img {
            transition: color 0.3s ease, transform 0.3s ease;
            width: 25px;
            filter: invert(100%) brightness(200%);
            border-radius: 50%;
        }
        
        .social-links img:hover {
            box-shadow: 0 0 10px var(--slate);
            filter: invert(100%) brightness(200%);
            transform: translateY(-5px);
        }

        @keyframes animasiMasuk {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        .puji-divdik {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5rem;
            margin-bottom: 10px;
            margin-top: 10px;
        }