body {
    margin: 0;
    padding: 0;
    background-color: #280a29;
    color: white;
    font-family: "Fira Code", monospace;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('img/stars.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    text-align: left;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.9), 0 0 10px rgba(255, 20, 147, 0.9), 0 0 20px rgba(255, 20, 147, 0.9);
}

.profile {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #FF00FF;
    border-radius: 15px;
    box-shadow: 0 0 5px #FF00FF, 0 0 10px #FF00FF, 0 0 20px #FF00FF;
    background-color: rgba(214, 15, 168, 0.1);
}

.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-right: 20px;
}

.profile-info h1 {
    font-size: 2em;
    margin: 0;
    color: #FFFFFF;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.9), 0 0 10px rgba(255, 20, 147, 0.9), 0 0 20px rgba(255, 20, 147, 0.9);
    font-weight: bold;
    letter-spacing: 1px;
}

.badges {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.badge {
    font-size: 1.2em;
}

.subtitle {
    font-size: 1em;
    color: rgb(255, 255, 255);
    margin: 5px 0;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.9), 0 0 10px rgba(255, 20, 147, 0.9), 0 0 20px rgba(255, 20, 147, 0.9);
}

.joined {
    font-size: 0.8em;
    color: lightgray;
    margin: 5px 0;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.9), 0 0 10px rgba(255, 20, 147, 0.9), 0 0 20px rgba(255, 20, 147, 0.9);
}

.status-music {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.status {
    display: flex;
    align-items: center;
    border: 1px solid #FF00FF;
    border-radius: 15px;
    box-shadow: 0 0 5px #FF00FF, 0 0 10px #FF00FF, 0 0 20px #FF00FF;
    background-color: rgba(214, 15, 168, 0.1);
    padding: 10px;
    margin-right: 15px;
    width: 48%;
    height: 114px;
}

.username {
    padding-top: 10px;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.9), 0 0 10px rgba(255, 20, 147, 0.9), 0 0 20px rgba(255, 20, 147, 0.9);
}

.status img {
    margin-right: 10px;
    width: 60px;
    height: 60px;
}

.current-status {
    font-size: 0.8em;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.9), 0 0 10px rgba(255, 20, 147, 0.9), 0 0 20px rgba(255, 20, 147, 0.9);
}

.music {
    padding: 10px;
    width: 48%;
    border: 1px solid #FF00FF;
    border-radius: 15px;
    box-shadow: 0 0 5px #FF00FF, 0 0 10px #FF00FF, 0 0 20px #FF00FF;
    background-color: rgba(214, 15, 168, 0.1);
}

.link-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.song-info {
    text-align: left;
    height: 114px;
}

.song-image {
    height: 50px;
    width: 50px;
    border-radius: 15px;
    display: inline-block;
    padding-top: px;
}

.song-title {
    font-size: 1em;
    color: white;
    margin: 0;
    padding-top: 0px;
}

.artist {
    font-size: 0.7em;
    color: white;
    margin: 0;
}

.preview-button {
    font-family: "Fira Code", monospace;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #FF00FF;
    box-shadow: 0 0 5px #FF00FF, 0 0 10px #FF00FF, 0 0 20px #FF00FF;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 15px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.25s;
}

.preview-button:hover {
    background-color: #FF00FF;
}

.icons {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    width: 300px; /* remove to add funny animation on icons hover -Nyawai*/
    height: 30px; /* remove to add funny animation on icons hover -Nyawai*/
}

.icons a {
    margin: 0 10px;
}

.icons img {
    width: 30px;
    height: 30px;
    opacity: 1;
    transition: width 0.45s, height 0.45s, opacity 0.15s;
}

.icons img:hover {
    width: 45px;
    height: 45px;
}

.icons img:active {
    opacity: 0.4;
}

.welcome-msg {
    font-size: 0.8em;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    text-align: center;
    vertical-align: top;
}



