/* POPPINS FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(330deg, #670454, #ee2482);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Linktree Container */
.linktree-container {
    width: 300px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Profile Section */
.profile .profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.name {
    font-size: 24px;
    font-weight: 600;
    color: #670454;
    margin: 5px 0;
}

.description {
    font-size: 14px;
    color: #a10070;
    margin-bottom: 20px;
}

/* About Section */
.about {
    font-size: 14px;
    color: #670454;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 15px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.social-link {
    color: #670454;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid #670454;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.social-link:hover {
    background-color: #670454;
    color: #fff;
}

/* Link Buttons */
.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-button {
    display: block;
    text-decoration: none;
    background-color: #a10070;
    color: #fff;
    padding: 10px 0;
    border-radius: 10px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #ee2482;
}

/* Optional Animated Circles */
.circle-1,
.circle-2 {
    position: absolute;
    border: 2px dashed #c975fb;
    border-radius: 50%;
    animation: circle-animation 15s linear infinite;
    z-index: -1;
}

.circle-1 {
    left: -30px;
    top: 40%;
    width: 60px;
    height: 60px;
}

.circle-2 {
    right: -50px;
    bottom: -40px;
    width: 120px;
    height: 120px;
}

@keyframes circle-animation {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}
