/* Body with gradient and animated background */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e1e2f, #2c2c44);
    overflow: hidden;
    position: relative;
}

/* Glowing blob elements */
body::before,
body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
    z-index: 0;
}

body::before {
    width: 400px;
    height: 400px;
    background: #ff4c4c;
    top: -100px;
    left: -100px;
}

body::after {
    width: 500px;
    height: 500px;
    background: #7289DA;
    bottom: -150px;
    right: -150px;
}

/* Container above the blobs */
.container {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Profile picture styling */
.profile-pic {
    margin-bottom: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    margin-left: auto;
    margin-right: auto;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social buttons */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 12px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #ff4c4c;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 76, 76, 0.4);
}
