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

/* Background with gradient and image */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, #000 100%), url('lola.jpg') no-repeat top center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align buttons towards the bottom */
    min-height: 100vh;
    padding-bottom: 50px; /* Space at the bottom */
}

/* Container styling without profile picture */
.container {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    background-color: transparent; /* Transparent background for the container */
}

.bio-container {
    max-width: 500px;
    width: 100%;
    background-color: transparent;
    padding: 20px;
    border-radius: 20px; /* More rounded edges */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff00ee; /* Light pink border */
    margin-bottom: 15px;
}

.name {
    font-size: 32px;
    font-family: Didot-Italic;
    font-weight: bold;
    color: #000; /* Vibrant pink */
    padding-bottom: 10px;
    font-style: italic;
    text-shadow: 1px 1px 2px pink, 0 0 1em brown, 0 0 0.2em brown;}

.bio {
    font-size: 16px;
    color: #000;
    font-style: italic;
}

/* Adjust button positioning */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto; /* Move buttons towards the bottom */
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    transition: background-color 0.3s;
    text-align: center;
}

.link-btn img.logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.exclusive img.logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.instagram {
    background-color: #ffffffbe;
    color: #000;
}

.instagram:hover {
    background-color: #fff;
}

.tiktok {
    background-color: #ffffffbe;
    color: #000;
}

.tiktok:hover {
    background-color: #fff;
}

.exclusive {
    background-color: #a8967a;
    animation: shakeAndGrow 3s ease-in-out infinite; /* Shake with grow and pause */
}

.exclusive:hover {
    background-color: #008dc6;
}

.twitter {
    background-color: #ffffffbe;
    color: #000;
}

.twitter:hover {
    background-color: #fff;
}

.patreon {
    background-color: #FF424D;
}

.patreon:hover {
    background-color: #e13a44;
}

@font-face {
    font-family: Didot-Italic;
    src: url("Didot-Italic.otf") format("opentype");
}

/* Shake with grow and vertical movement */
/* Shake with grow and vertical movement of left and right sides */
@keyframes shakeAndGrow {
    0%, 40% {
        transform: scale(1) skewY(0deg); /* Normal size and no skew */
    }
    10%, 30% {
        transform: scale(1.1) skewY(-5deg); /* Skew left side up */
    }
    20% {
        transform: scale(1.1) skewY(5deg); /* Skew right side up */
    }
    /* 40% to 100% is the pause (no shaking) */
}

/* Responsive Design */
/* For small screens (smartphones) */
@media (max-width: 600px) {
    .name {
        font-size: 36px;
    }

    .bio {
        font-size: 14px;
        margin-bottom: 20px; /* Space between bio and buttons */
    }

    .link-btn {
        font-size: 16px;
        padding: 12px 15px;
    }
}