
        @font-face {
            font-family: "MPLUS";
            src: url("../Fonts/MPLUSRounded1c-ExtraBold.ttf") format("truetype");
            font-weight: 400;
            font-style: normal;
        }
        
        :root {
            --bg-color: #212830;
            --text-light: #ffffff;
            --accent-green: #4BCD79;
            --button-bg: #2f363d;
            --button-hover: #243934;
            --button-text: #979a9e;
            --button-hover-text: #41ce5c;
            --button-hover-border: #3bb054;
        }

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

        body {
            background: var(--bg-color);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text-light);
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            user-select: none;
            caret-color: transparent;
        }

        /* Header Icons */
        .header-icons {
            position: fixed;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 15px;
            z-index: 1000;
        }

        .icon-btn {
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .icon-btn:hover {
            opacity: 1;
        }

        /* Main Content */
        .main-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 40px 20px 150px;
            position: relative;
            z-index: 1;
        }

        .title {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }

        .title .name {
            font-family: "MPLUS", sans-serif;
            color: var(--accent-green);
        }

        .subtitle {
          font-family: "MPLUS", sans-serif;
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            margin-bottom: 50px;
            text-align: center;
            opacity: 0.9;
        }

        /* Navigation Buttons */
        .nav-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-btn {
            background: var(--button-bg);
            color:  var(--button-text);
            border: 1px solid transparent;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav-btn:hover {
            background: var(--button-hover);
            color:  var(--button-hover-text);
            border: 1px solid var(--button-hover-border);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        

        /* THE WAVE ANIMATION */
        .wave {
        position: fixed;      /* stick to bottom */
        bottom: 0;
        left: 0;

        width: 100%;          /* stable width, avoids 100vw bug */
        height: 100px;         /* <-- tweak this to adjust wave height */
        
        overflow: hidden;     /* prevents clipping */
        pointer-events: none; /* so it doesn’t block clicks */
        z-index: -1;          /* stays behind content */
        }

        /* keep your animation exactly as-is */
        use {
        animation: move-forever 2s linear infinite;
        }

        use:nth-child(2) {
        animation-duration: 2.5s;
        animation-delay: -1.5s;
        }

        use:nth-child(1) {
        animation-duration: 5s;
        }

        @keyframes move-forever {
        0% { transform: translate(-2px, 0); }
        100% { transform: translate(0px, 0); }
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }

            .nav-btn {
                width: 100%;
            }
        }


               /* ============================= */
        /* Scrollbar – modern slick */
        /* ============================= */

        /* Required base */
        *::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        /* Track */
        *::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
        }

        /* Thumb */
        *::-webkit-scrollbar-thumb {
            background: rgba(75,205,121,0.25);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        /* Hover glow */
        *::-webkit-scrollbar-thumb:hover {
            background: rgba(75,205,121,0.9);
        }

        * {
            scrollbar-width: thin;
            scrollbar-color: rgba(75,205,121,0.6) rgba(255,255,255,0.05);
        }
