body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #1c2526 0%, #0a0f10 100%) url("/music/images/bg01.png") fixed;
    background-color: #0a0f10;
    color: #fff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 900px;
    padding: 30px;
    margin: 3em auto 0;
    background: linear-gradient(180deg, rgba(28, 37, 38, 0.9) 0%, rgba(10, 15, 16, 0.7) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    position: relative;
}

.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 20px auto;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #3a4a4b, #1a2526) border-box;
    object-fit: cover;
    display: block;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 1em;
    background: linear-gradient(to right, #ffffff 20%, rgba(255, 255, 255, 0.5) 50%, #a0a0a0 80%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: textGlint 1.5s ease-in-out forwards;
}

@keyframes textGlint {
    0% {
        background-position: 100% 0;
        opacity: 0.8;
    }
    100% {
        background-position: 0 0;
        opacity: 1;
    }
}

h2 {
    font-size: 1.6em;
    margin: 1.5em 0 1em;
    color: #ddd;
    background: linear-gradient(90deg, #cccccc, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 1.4em;
    margin: 1em 0 0.5em;
    color: #ddd;
    background: linear-gradient(90deg, #cccccc, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2em;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links li {
    margin: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #2a3536, #1a2526);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2em;
    transition: all 0.3s ease-in-out; /* Updated to ease-in-out */
}

.social-links a:hover {
    background: linear-gradient(45deg, #4a5a5b, #3a4546);
    transform: scale(1.1);
}

.release-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2em;
}

.release-list li {
    margin-bottom: 15px;
    position: relative;
}

.release-list .music-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(45deg, #2a3536, #1a2526);
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 1.1em;
    transition: background 0.3s ease-in-out; /* Updated to ease-in-out */
    position: relative;
}

.release-list .music-link:hover {
    background: linear-gradient(45deg, #4a5a5b, #3a4546);
}

.release-list .release-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 4px;
    object-fit: cover;
}

.release-list .release-title {
    flex-grow: 1;
    text-align: left;
}

.release-list .release-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease-in-out; /* Updated to ease-in-out */
}

.release-list .release-menu:hover {
    background: rgba(255, 255, 255, 0.5);
}

.release-list .release-menu i {
    font-size: 1em;
    color: #fff;
}

/* Toast Popup Styles */
.toast-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #1a2526, #2a3536);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    width: 440px;
    text-align: left;
}

.toast-image {
    width: 400px;
    height: 400px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 4px;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.toast-popup a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    font-size: 1.2em;
    transition: background 0.3s ease-in-out; /* Updated to ease-in-out */
}

.toast-popup a i {
    margin-right: 12px;
    font-size: 1.5em;
}

.toast-popup a:hover {
    background: rgba(74, 90, 91, 0.3);
}

.close-toast {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 2em;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease-in-out; /* Updated to ease-in-out */
}

.close-toast:hover {
    color: #ff4444;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 20px;
}

.link-list .music-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #2a3536, #1a2526);
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.2em;
    transition: all 0.3s ease-in-out; /* Updated to ease-in-out */
    width: 100%;
    box-sizing: border-box;
}

.link-list .music-link i {
    margin-right: 12px;
}

.link-list .music-link:hover {
    background: linear-gradient(45deg, #4a5a5b, #3a4546);
    transform: scale(1.05); /* Subtle scale effect instead of wobble */
}

.description {
    margin: 20px 0;
    font-size: 1em;
    color: #ccc;
    background: linear-gradient(90deg, #cccccc, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.6;
}

.about-me {
    margin: 20px 0;
    padding: 15px;
    background: rgba(42, 53, 54, 0.3);
    border-radius: 8px;
}

.about-me p {
    margin: 0;
    font-size: 1em;
    color: #ccc;
    background: linear-gradient(90deg, #cccccc, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 2em;
    background: linear-gradient(180deg, rgba(10, 15, 16, 0.7) 0%, rgba(28, 37, 38, 0.9) 100%);
    color: #aaa;
    font-size: 0.9em;
}

.footer p {
    margin: 0;
}

/* Removed wobble animation since it's no longer used */

@media screen and (max-width: 736px) {
    .container {
        padding: 20px;
        width: 95%;
        max-width: none;
    }

    .profile-avatar {
        width: 110px;
        height: 110px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.2em;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .release-list .music-link {
        padding: 14px 12px;
        font-size: 1em;
    }

    .release-image {
        width: 40px;
        height: 40px;
    }

    .toast-popup {
        width: 340px;
    }

    .toast-image {
        width: 300px;
        height: 300px;
        border: 2px solid #ffffff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    }

    .toast-popup a {
        padding: 10px 12px;
        font-size: 1.1em;
    }

    .toast-popup a i {
        margin-right: 10px;
        font-size: 1.3em;
    }

    .link-list .music-link {
        padding: 16px 15px;
        font-size: 1em;
    }

    .link-list .music-link i {
        margin-right: 10px;
    }

    .description {
        font-size: 0.9em;
    }

    .about-me p {
        font-size: 0.9em;
    }

    .footer {
        padding: 15px 0;
        font-size: 0.85em;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }

    .release-list .music-link {
        padding: 12px 10px;
        font-size: 0.95em;
    }

    .release-image {
        width: 35px;
        height: 35px;
    }

    .toast-popup {
        width: 290px;
    }

    .toast-image {
        width: 250px;
        height: 250px;
        border: 2px solid #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .toast-popup a {
        padding: 8px 10px;
        font-size: 1em;
    }

    .toast-popup a i {
        margin-right: 8px;
        font-size: 1.2em;
    }

    .link-list .music-link {
        padding: 14px 12px;
        font-size: 0.95em;
    }

    .link-list .music-link i {
        margin-right: 8px;
    }

    .description {
        font-size: 0.9em;
    }

    .about-me p {
        font-size: 0.85em;
    }

    .footer {
        padding: 10px 0;
        font-size: 0.8em;
    }
}