        /* ==================== CSS VARIABLES ==================== */
        :root {
            --primary-color: #d4d0c8;
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --background: #ffffff;
            --card-background: #ffffff;
            --shadow-lg: 0 8px 24px rgba(120, 120, 128, 0.12);
            --border-radius: 24px;
            --squircle-radius: 24px;
            --spacing-unit: 1rem;
        }

        /* ==================== GLOBAL RESET ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ==================== BASE STYLES ==================== */
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 
                         'Inter', 'Poppins', sans-serif;
            background: var(--background);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 3rem 1rem 2rem;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ==================== MAIN CONTAINER ==================== */
        .container {
            width: 100%;
            max-width: 500px;
            background: var(--card-background);
            border-radius: var(--border-radius);
            padding: 3rem 2rem;
            box-shadow: var(--shadow-lg);
            text-align: center;
        }

        /* ==================== PROFILE SECTION ==================== */
        .profile-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        /* Squircle Profile Image */
        .profile-image-wrapper {
            position: relative;
            width: 140px;
            height: 140px;
        }

        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--squircle-radius);
        }

        /* Profile Text */
        .profile-name {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }

        .profile-title {
            font-size: 1.125rem;
            color: var(--text-secondary);
            font-weight: 400;
        }

        /* ==================== SOCIAL BUTTONS ==================== */
		/* Icon styles */
		.icon {
			width: 20px;
			height: 20px;
		}
        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            background: var(--card-background);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 12px;
            border: 2px solid #e5e7eb;
            font-weight: 500;
            font-size: 0.9375rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .social-btn:hover {
            border-color: var(--primary-color);
        }

        /* Button Icons */
        .social-btn svg {
            width: 20px;
            height: 20px;
            transition: var(--transition);
        }

        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 480px) {
            .container {
                padding: 2.5rem 1.5rem;
            }

            .profile-name {
                font-size: 1.75rem;
            }

            .profile-title {
                font-size: 1rem;
            }
        }

        @media (min-width: 768px) {
            .container {
                padding: 4rem 3rem;
            }

            .profile-image-wrapper {
                width: 160px;
                height: 160px;
            }
        }

        /* ==================== ACCESSIBILITY ==================== */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Focus visible for keyboard navigation */
        *:focus-visible {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }