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

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf6 100%);
            min-height: 100vh;
            color: #2d3748;
            text-align: center;
            overflow-x: hidden;
        }

        .container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            position: relative;
            z-index: 10;
        }

        /* Enhanced background shapes */
        .left-header-bg-shape, .right-header-bg-shape {
            position: fixed;
            z-index: 1;
            opacity: 0.15;
            filter: blur(1px);
            animation: floatGentle 6s ease-in-out infinite;
        }

        .left-header-bg-shape {
            height: 200px;
            width: auto;
            top: 0px;
            left: 30px;
        }

        .right-header-bg-shape {
            height: 200px;
            width: auto;
            bottom: 0px;
            right: 30px;
            transform: rotate(180deg);
            animation-delay: 3s;
            rotate: 180deg;
        }

        @keyframes floatGentle {
            0%, 100% { transform: translateY(0px); opacity: 0.15; }
            50% { transform: translateY(-10px); opacity: 0.25; }
        }

        .border {
            position: relative;
            z-index: 5;
            width: 90%;
            max-width: 420px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            padding: 40px 30px;
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.1),
                0 5px 15px rgba(0, 0, 0, 0.05);
            animation: slideInUp 0.8s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile {
            margin-bottom: 32px;
        }

        .circular--square {
            border-radius: 50%;
            width: 120px;
            height: 120px;
            object-fit: cover;
            border: 3px solid #6366f1;
            margin-bottom: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
            animation: profileGlow 4s ease-in-out infinite;
        }

        @keyframes profileGlow {
            0%, 100% { box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15); }
            50% { box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25); }
        }

        .circular--square:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
        }

        h1 {
            margin: 15px 0;
            font-size: 2.4rem;
            font-weight: 600;
            background: linear-gradient(135deg, #1e293b, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        p {
            margin: 0 0 28px 0;
            font-size: 1rem;
            color: #64748b;
            line-height: 1.6;
            font-weight: 400;
        }

        .main_links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 28px 0;
        }

        .left_link {
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #FFDD00;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .left_link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            border-color: #cbd5e0;
        }

        .left_link img {
            display: block;
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .left_link:hover img {
            transform: scale(1.02);
        }

        .right_link {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 60px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 16px;
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
            position: relative;
            overflow: hidden;
        }

        .right_link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .right_link:hover::before {
            left: 100%;
        }

        .right_link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
        }

        .right_link h2 {
            color: white;
            font-size: 1rem;
            margin: 0;
            font-weight: 500;
        }

        .other_links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 28px;
        }

        .link {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 54px;
            width: 100%;
            max-width: 360px;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            background: white;
            color: #4a5568;
            border: 1px solid #e2e8f0;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
            transition: left 0.4s;
        }

        .link:hover::before {
            left: 100%;
        }

        .link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #6366f1;
            color: #6366f1;
        }

        .link h2 {
            font-size: 1rem;
            margin: 0;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .github:hover {
            border-color: #24292e;
            color: #24292e;
        }

        .github:hover::before {
            background: linear-gradient(90deg, transparent, rgba(36, 41, 46, 0.05), transparent);
        }

        .twitter:hover {
            border-color: #1d9bf0;
            color: #1d9bf0;
        }

        .twitter:hover::before {
            background: linear-gradient(90deg, transparent, rgba(29, 155, 240, 0.05), transparent);
        }

        .instagram:hover {
            border-color: #e4405f;
            color: #e4405f;
        }

        .instagram:hover::before {
            background: linear-gradient(90deg, transparent, rgba(228, 64, 95, 0.05), transparent);
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .border {
                padding: 32px 24px;
                margin: 15px;
            }

            h1 {
                font-size: 2rem;
            }

            .circular--square {
                width: 100px;
                height: 100px;
            }

            .main_links {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .left_link img {
                height: 50px !important;
                width: auto !important;
                max-width: 100%;
            }

            .right_link {
                height: 56px;
            }

            .link {
                height: 50px;
            }
        }

        @media (max-width: 400px) {
            h1 {
                font-size: 1.8rem;
            }

            .border {
                padding: 28px 20px;
            }
        }

        /* Enhanced focus states */
        .link:focus,
        .right_link:focus,
        .left_link:focus {
            outline: 2px solid #6366f1;
            outline-offset: 2px;
        }