/* Existing CSS */



        /* Base styles for the body */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #2c2c2c;
            overflow: hidden;
            position: relative;
        }

        /* Container for the profile content */
        .profile-container {
            text-align: center;
            width: 90%;
            max-width: 600px;
            margin: auto;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        /* Styling for the profile photo */
        .profile-photo img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 5px solid #ddd;
            object-fit: cover;
        }

        /* Styling for the profile name and verified badge */
        .profile-details h1 {
            margin-top: 20px;
            font-size: 2em;
            color: #333;
            display: inline-block;
        }

        .badge img {
            width: 30px;
            height: 30px;
            vertical-align: middle;
        }

        /* Styling for the biography text */
        .bio {
            margin: 15px 0;
            font-size: 1em;
            color: #555;
        }

        /* Styling for the location section */
        .location {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px 0;
            font-size: 1em;
            color: #666;
        }

        .location img {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }

        /* Grid setup for social media icons */
        .social-media {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            /* 5 columns in a row */
            gap: 10px;
            /* Equal space between icons both horizontally and vertically */
            margin-top: 30px;
        }

        /* Styling for each social media icon link */
        .social-media a {
            display: inline-block;
            transition: transform 0.3s;
            border-radius: 50%;
            /* Make sure icons appear circular */
            overflow: hidden;
        }

        .social-media a img {
            width: 40px;
            height: 40px;
        }

        /* Scale effect on hover */
        .social-media a:hover {
            transform: scale(1.2);
        }

        /* Fullscreen canvas for background animation */
        #backgroundCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* Header for social links */
        .social-links-header {
            font-size: 1.5em;
            color: #333;
            margin-top: 20px;
            position: relative;
            display: inline-block;
        }

        .social-links-header::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, red, orange, yellow, green, cyan, blue, violet);
            background-size: 400% 100%;
            animation: gradient-animate 3s linear infinite;
        }

        @keyframes gradient-animate {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        /* Responsive design adjustments for smaller screens */
        @media (max-width: 768px) {
            .profile-container {
                width: 80%;
                padding: 15px;
            }

            .profile-details h1 {
                font-size: 1.8em;
            }

            .badge img {
                width: 22px;
                height: 22px;
            }

            .bio {
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .profile-container {
                width: 95%;
                padding: 10px;
            }

            .profile-details h1 {
                font-size: 1.5em;
            }

            .badge img {
                width: 18px;
                height: 18px;
            }

            .bio {
                font-size: 0.8em;
            }

            .social-media {
                grid-template-columns: repeat(3, 1fr);
                /* Adjust to 3 columns for small screens */
                gap: 10px;
                /* Keep the same gap for consistency */
            }

            .social-media a img {
                width: 30px;
                height: 30px;
            }
        }