        /* ==================== CSS VARIABLES ==================== */
        :root {
            --primary-color: #afcaca;
            --text-primary: #0a1d25;
            --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;
        }

        /* ==================== 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;
            overflow: hidden;
            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;
		}

        /* Stack buttons vertically and make them uniform width */
        .social-buttons {
            display: flex;
            flex-direction: column;
            align-items: center; /* center the column in the card */
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start; /* left-align icon + text inside the button */
            gap: 0.5rem;
            padding: 0.875rem 0.75rem 0.875rem 2.4rem; /* increased left padding so icon+label sit further from border */
            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;
            cursor: pointer;
            width: 230px; /* slightly narrower for visual centering */
            box-sizing: border-box;
        }

        .social-btn:hover {
            border-color: var(--primary-color);
        }

        /* Button Icons */
        .social-btn svg {
            width: 20px;
            height: 20px;
        }
        
        /* ==================== 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;
            }
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --primary-color:#434343;
                --text-primary:#f3f4f6;
                --text-secondary:#d1d5db;
                --background:#181818;
                --card-background:#1f1f1f;
                --shadow-lg:0 8px 24px rgba(0, 0, 0, 0.32);

            }
            .icon {
                filter: invert(1) hue-rotate(180deg);
            }
        }
        /* ==================== ACCESSIBILITY ==================== */
        /* Focus visible for keyboard navigation */
        *:focus-visible {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }