        /* Global styles and reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: url('/images/background.webp') no-repeat fixed center/cover;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
            position: relative;
        }

        /* Overlay for better contrast */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            pointer-events: none;
            
        }

        /* Main container */
        .container {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 40px 30px;
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
            text-align: center;
            max-width: 420px;
            width: 90%;
            margin: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Avatar styling */
        .avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 15px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            padding: 4px;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .avatar:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.6);
        }

        .avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Typography */
        .username {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            line-height: 1.5;
            font-weight: 400;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        /* Button container */
        .buttons-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Individual button styling */
        .link-button {
            display: flex;
            align-items: center;
            padding: 18px 25px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* Button hover effects */
        .link-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 1);
            color: #2c3e50;
        }

        .link-button:active {
            transform: translateY(-1px);
        }

        /* Icon styling within buttons */
        .link-button .icon {
            width: 24px;
            height: 24px;
            margin-right: 15px;
            border-radius: 6px;
            transition: transform 0.3s ease;
        }

        .link-button:hover .icon {
            transform: scale(1.1);
        }

        /* Button text */
        .link-button .text {
            flex-grow: 1;
            text-align: left;
        }

        /* Responsive design */
        @media (max-width: 480px) {
            .container {
                padding: 30px 20px;
                margin: 10px;
            }
            
            .avatar {
                width: 100px;
                height: 100px;
            }
            
            .username {
                font-size: 24px;
            }
            
            .description {
                font-size: 14px;
            }
            
            .link-button {
                padding: 16px 20px;
                font-size: 15px;
            }
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container {
            animation: fadeInUp 0.8s ease-out;
        }

        .link-button {
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .link-button:nth-child(1) { animation-delay: 0.1s; }
        .link-button:nth-child(2) { animation-delay: 0.2s; }
        .link-button:nth-child(3) { animation-delay: 0.3s; }
        .link-button:nth-child(4) { animation-delay: 0.4s; }
        .link-button:nth-child(5) { animation-delay: 0.5s; }
        .link-button:nth-child(6) { animation-delay: 0.6s; }
        .link-button:nth-child(7) { animation-delay: 0.7s; }
        .link-button:nth-child(8) { animation-delay: 0.8s; }
        .link-button:nth-child(9) { animation-delay: 0.9s; }
        .link-button:nth-child(10) { animation-delay: 1.0s; }
    