:root {
            --hover-col: #8db3dd;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            /* Modern Gradient Background */
            background: #EEAECA;
            background: radial-gradient(circle,rgb(216, 135, 148) 0%, rgba(148, 187, 233, 1) 100%);
            color: #333;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        /* --- CONTAINER (The "Phone" view) --- */
        .container {
            background-color: rgba(255, 255, 255, 0.95);
            width: 100%;
            max-width: 400px; /* Limits width on PC to look like a mobile app */
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            text-align: center;
        }

        /* --- PROFILE SECTION --- */
        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%; /* Makes it a circle */
            object-fit: cover;
            border: 4px solid var(--hover-col);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }

        h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 5px;
        }

        .bio {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        /* --- LINKS SECTION --- */
        .links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .link-btn {
            display: flex;
            align-items: center;
            justify-content: center; /* Centers text */
            text-decoration: none;
            background-color: white;
            color: #333;
            padding: 16px;
            border-radius: 50px; /* Pill shape */
            border: 1px solid #eee;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
            position: relative;
        }

        /* Icon positioning within the button */
        .link-btn i {
            position: absolute;
            left: 25px;
            font-size: 1.2rem;
        }

        /* Hover Effects */
        .link-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #f8f9fa;
            color: var(--hover-col); /* Changes text color on hover */
        }

        /* --- SOCIAL ICONS FOOTER --- */
        .socials {
            margin-top: 35px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icon {
            color: #888;
            font-size: 1.5rem;
            transition: color 0.2s;
        }

        .social-icon:hover {
            color: var(--hover-col);
        }
