* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .noto-sans-myanmar-medium {
        font-family: "Noto Sans Myanmar", sans-serif;
        font-weight: 500;
        font-style: normal;
        }

        body {
            font-family: "Noto Sans Myanmar", sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }

        /* Elegant background pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .container {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
            padding: 50px 40px;
            width: 100%;
            max-width: 420px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 8px 25px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(218, 165, 32, 0.2);
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

        /* Decorative corner elements */
        .container::before,
        .container::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            border: 2px solid #daa520;
        }

        .container::before {
            top: 20px;
            left: 20px;
            border-right: none;
            border-bottom: none;
        }

        .container::after {
            bottom: 20px;
            right: 20px;
            border-left: none;
            border-top: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile-section {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Noto Sans Myanmar", sans-serif;
            font-size: 48px;
            color: white;
            font-weight: 600;
            box-shadow: 
                0 10px 30px rgba(218, 165, 32, 0.3),
                0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.9);
            position: relative;
        }

        .avatar::after {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border: 1px solid rgba(218, 165, 32, 0.3);
            border-radius: 50%;
        }

        .name {
            color: #2c3e50;
            font-family: "Noto Sans Myanmar", sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .bio {
            color: #5d6d7e;
            font-size: 18px;
            font-style:normal;
            line-height: 1.6;
        }

        .divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #daa520 50%, transparent 100%);
            margin: 25px auto;
        }

        .links-container {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .link-item {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            text-decoration: none;
            color: #2c3e50;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 
                0 4px 12px rgba(0, 0, 0, 0.08),
                0 2px 6px rgba(0, 0, 0, 0.04);
        }

        .link-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #daa520, #b8860b);
            border-radius: 12px 0 0 12px;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .link-item:hover::before {
            transform: scaleY(1);
        }

        .link-item:hover {
            transform: translateX(8px);
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.1);
            border-color: #daa520;
        }

        .link-item:active {
            transform: translateX(4px);
        }

        .link-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .link-content {
            flex: 1;
        }

        .link-title {
            font-family: "Noto Sans Myanmar", sans-serif;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 4px;
            color: #2c3e50;
        }

        .link-subtitle {
            font-size: 14px;
            color: #7f8c8d;
            font-style: normal;
        }

        /* Platform-specific styling */
        .facebook .link-icon { background: linear-gradient(135deg, #1877f2, #166fe5); }
        .viber .link-icon { background: linear-gradient(135deg, #665cac, #7b68ee); }
        .tiktok .link-icon { background: linear-gradient(135deg, #000000, #ff0050); }
        .phone .link-icon { background: linear-gradient(135deg, #27ae60, #2ecc71); }
        .address .link-icon { background: linear-gradient(135deg, #e67e22, #f39c12); }
        .maps .link-icon { background: linear-gradient(135deg, #3498db, #2980b9); }

        .footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #ecf0f1;
            color: #95a5a6;
            font-size: 14px;
            font-style: italic;
        }

        .footer::before {
            content: '◆';
            color: #daa520;
            font-size: 12px;
            display: block;
            margin-bottom: 10px;
        }

        /* Mobile responsiveness */
        @media (max-width: 480px) {
            .container {
                padding: 40px 25px;
                margin: 10px;
            }
            
            .name {
                font-size: 28px;
            }
            
            .avatar {
                width: 100px;
                height: 100px;
                font-size: 40px;
            }

            .link-item {
                padding: 18px 20px;
            }

            .link-icon {
                width: 42px;
                height: 42px;
                font-size: 20px;
            }
        }

        /* Elegant hover animations */
        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-2px); }
        }

        .avatar:hover {
            animation: gentleFloat 2s ease-in-out infinite;
        }

        /* Premium shine effect */
        .link-item:hover .link-icon {
            box-shadow: 
                0 6px 20px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
        }

        /* Elegant text selection */
        ::selection {
            background: rgba(218, 165, 32, 0.2);
            color: #2c3e50;
        }