        :root {
            --accent-yellow: #ffd700;
            --accent-blue: #00d2ff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            word-wrap: break-word;
            overflow-x: hidden;
        }

        *,
        *:before,
        *:after {
            box-sizing: inherit;
        }

        .logo {
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .brand-name {
            color: var(--accent-yellow);
        }

        .menu-item {
            transition: opacity 0.2s ease, background-color 0.2s ease;
        }

        .about-pill-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin: 20px 0;
        }

        .pill-bio {
            background: rgba(6, 11, 22, 0.9);
            border: 1.5px solid var(--accent-blue);
            border-radius: 50px;
            padding: 22px 40px;
            color: #ffffff;
            text-align: center;
            font-size: 1.05rem;
            line-height: 1.6;
            max-width: 900px;
            width: 100%;
            box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            margin: 0 auto;
        }

        .social-note {
            background: rgba(6, 11, 22, 0.9);
            border: 1.5px solid var(--accent-blue);
            border-radius: 50px;
            padding: 18px 30px;
            color: #ffffff;
            text-align: center;
            font-size: 0.95rem;
            line-height: 1.5;
            max-width: 800px;
            margin: 25px auto 0 auto;
            box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        footer {
            width: 100%;
            padding: 20px 10px;
            display: flex;
            justify-content: center;
            background: transparent;
        }

        .copyright-pill {
            display: inline-block;
            background: rgba(6, 11, 22, 0.9);
            border: 1.5px solid var(--accent-blue);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 16px 30px;
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
            line-height: 1.5;
            text-align: center;
            max-width: 900px;
            box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
        }

        @media screen and (max-width: 768px) {

            .pill-bio,
            .social-note,
            .copyright-pill {
                border-radius: 25px;
                padding: 16px 20px;
                font-size: 0.9rem;
            }

            .navbar {
                flex-direction: column;
                padding: 10px;
            }

            .navbar nav {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
                width: 100%;
            }

            .navbar nav a {
                padding: 8px 12px;
                font-size: 14px;
            }

            .quick-socials {
                position: fixed;
                bottom: 10px;
                left: 50%;
                transform: translateX(-50%);
                flex-direction: row !important;
                z-index: 1000;
                background: rgba(0, 0, 0, 0.75);
                padding: 6px 12px;
                border-radius: 20px;
                backdrop-filter: blur(5px);
            }

            .hero-card {
                flex-direction: column;
                text-align: center;
            }

            .project-grid,
            .stats,
            .dashboard,
            .socials {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
                gap: 12px !important;
            }

            .portfolio-banner {
                max-height: 200px;
                width: 100%;
                object-fit: cover;
            }

            button,
            a {
                min-height: 44px;
                min-width: 44px;
            }
        }
