/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 600px; /* Limits width on desktop for mobile feel */
    text-align: center;
}

/* Profile Styling */
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 15px;
    object-fit: cover;
}

.username {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.bio {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Button Styling */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    background-color: #fff;
    color: #333;
    text-decoration: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.link-btn:hover {
    transform: translateY(-3px);
    background-color: #f0f0f0;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
