body {
    /* Base styling for the entire page */
    background-color: #E6E6FA; /* Light gray background */
    font-family: 'Poppins', sans-serif; /* Modern font from Google Fonts */
    display: flex;
    justify-content: center; /* Center content horizontally */
    padding: 20px;
    margin: 0;
}

.container {
    /* Main wrapper to limit content width on large screens */
    width: 100%;
    max-width: 600px; /* Standard mobile/link-in-bio width */
    text-align: center;
}

/* --- Profile Section Styling --- */
.profile-section {
    margin-bottom: 30px;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Makes the photo perfectly round */
    object-fit: cover; /* Ensures the image fills the circle */
    border: 3px solid #4B3D60; /* Accent color border */
    margin-bottom: 10px;
}

h1 {
    font-size: 1.8em;
    color: #5f16cc;
    margin: 0;
}

p {
    font-size: 1em;
    color: #48429e;
    margin-top: 5px;
}

/* --- Links Section Styling --- */
.links-section {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px; /* Space between buttons */
}

.link-button {
    /* Styling for the actual link buttons */
    display: block; /* Makes the button take the full container width */
    padding: 15px 20px;
    background-color: #FD5E5e; /* Primary button color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    font-weight: 600;
    border-radius: 10px; /* Rounded corners for the button */
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Hover effect for a better user experience */
.link-button:hover {
    background-color: #E94E41; /* Slightly darker on hover */
    transform: translateY(-2px); /* Slight lift effect */
}