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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #1F1744 0%, #293283 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            max-width: 680px;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 40px 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* Banner Section */
        .banner {
            text-align: center;
            margin-bottom: 40px;
        }

        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #38BACC;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(56, 186, 204, 0.3);
        }

        .banner h1 {
            font-size: 28px;
            color: #1F1744;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .banner p {
            color: #718096;
            font-size: 16px;
            line-height: 1.6;
        }

        /* Links Section */
        .links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .link-item {
            display: flex;
            align-items: center;
            padding: 18px 24px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            text-decoration: none;
            color: #1F1744;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .link-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, #38BACC 0%, #3980BC 100%);
            transition: width 0.3s ease;
            z-index: 0;
        }

        .link-item:hover::before {
            width: 100%;
        }

        .link-item:hover {
            border-color: #38BACC;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(56, 186, 204, 0.3);
        }

        .link-icon {
            font-size: 24px;
            margin-right: 16px;
            min-width: 24px;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .link-item:hover .link-icon,
        .link-item:hover .link-text {
            color: white;
        }

        .link-text {
            font-size: 16px;
            font-weight: 600;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
        }

        .footer p {
            color: #718096;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f7fafc;
            border-radius: 50%;
            color: #F1882D;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #F1882D 0%, #38BACC 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(241, 136, 45, 0.4);
        }

        /* Responsive */
        @media (max-width: 640px) {
            .container {
                padding: 30px 20px;
            }

            .banner h1 {
                font-size: 24px;
            }

            .link-item {
                padding: 16px 20px;
            }

            .link-text {
                font-size: 15px;
            }
        }
