@charset "UTF-8";

*{
    cursor: url("resources/customCursor.ico"), auto;
}

body {
    background: #181818;
    font-family: "Roboto", sans-serif;
}

body a {
    color: #aaaaaa;
}

body a:hover {
    color: #c8c8c8;
}

.header {
    background: #000;
    padding: 10px;
    color: #aaaaaa;
    border-bottom: 1px solid #181818;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.header .page-flows .flow {
    font-size: 20px;
    color: #aaaaaa;
    margin: 0 10px;
}

.header .page-flows .flow:hover {
    color: white;
}

.header .page-flows .flow .disabled {
    color: #5e5e5e;
}

.header .search {
    margin-left: 1%;
}

.header .search input {
    border-radius: 500px;
    border: none;
    color: #fff;
    padding-left: 35px;
    width: 500px;
    height: 35px;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23b3b3b3' d='M21 20l-5.633-5.633a7.5 7.5 0 1 0-1.414 1.414L20 21l1-1zM9.5 16a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 5%;
    background-position: 7px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.header .search input:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header .search :focus {
    border: solid #ffffff 1px;
}

.header .user {
    width: 300px;
    margin-left: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.header .user i {
    font-size: 20px;
}

.header .user i:hover {
    color: white;
}

.header .user__info button {
    background-color: #ffffff;
    color: #000000;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 12px;
    border: 0px;
    border-radius: 40px;
}

.header .user__actions button {
    background: none;
    border: none;
}

.header .user__actions .dropdown-menu {
    background: #282828;
    margin-top: 25px;
    border-radius: 3px;
    padding: 0;
    border: none;
}

.header .user__actions .dropdown-menu:before {
    font-family: "Ionicons";
    content: "";
    position: absolute;
    top: -30px;
    right: 7px;
    color: #282828;
    font-size: 36px;
}

.header .user__actions .dropdown-menu a {
    color: #aaaaaa;
    transition: all 0.2s ease;
}

.header .user__actions .dropdown-menu a:hover {
    background: none;
    transition: all 0.2s ease;
}

.header .user__actions .dropdown-menu li {
    padding: 10px;
    margin: 0;
    transition: all 0.2s ease;
}

.header .user__actions .dropdown-menu li:hover {
    background: #aaaaaa;
    transition: all 0.2s ease;
}

.header .user__actions .dropdown-menu li:hover a {
    color: #c8c8c8;
    transition: all 0.2s ease;
}

.content {
    display: flex;
    flex-flow: row wrap;
}

.content__left {
    padding: 5px 5px 0 5px;
    background-color: #000;
    width: 15%;
}

.content__middle {
    padding: 5px 5px 0 0;
    background-color: #000;
    width: 70%;
}

.content__right {
    width: 15%;
    padding : 5px 5px 0 0;
    background-color: #000;
}

@media (max-width: 1400px) {
    .content__left {
        width: 20%;
    }

    .content__middle {
        width: 80%;
    }

    .content__right {
        display: none;
    }
}

@media (max-width: 768px) {
    .content__left {
        width: 100%;
    }

    .content__middle {
        width: 100%;
    }
}

.navigation {
    padding: 15px;
    background: #181818;
    color: #aaaaaa;
    overflow-y: scroll;
    border-radius: 10px 10px 0 0;
}

.navigation__list {
    display: flex;
    flex-flow: column wrap;
    margin-bottom: 15px;
}

.navigation__list__header:after {
    font-family: "Ionicons";
    content: "";
}

.navigation__list .active:after {
    font-family: "Ionicons";
    content: "";
}

.navigation__list__item {
    color: #aaaaaa;
    padding: 5px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.navigation__list__item:hover {
    color: white;
    text-decoration: none;
    border-right: 3px solid #1ed760;
}

.navigation__list__item i {
    width: 25px;
    display: block;
}

@media (max-width: 768px) {
    .navigation {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
    }

    .navigation__list {
        margin-bottom: 0;
        width: calc(100% / 3);
        text-align: center;
    }

    .navigation__list__item {
        width: 100%;
        text-align: center;
    }

    .navigation__list__item i {
        display: none;
    }

    .navigation__list__item span {
        margin: 0 auto;
    }

    .navigation__list__item:hover {
        border: none;
    }
}

.playlist {
    padding: 8px;
    background: rgba(40, 40, 40, 0.7);
    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;
}

.playlist:hover {
    background: #424242;
}

.playlist:hover a {
    color: white;
}

.playlist a {
    color: #aaaaaa;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.playlist a:hover {
    text-decoration: none;
}

.playlist a i {
    font-size: 24px;
    color: white;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .playlist {
        display: none;
    }
}

.playing {
    background: rgba(40, 40, 40, 0.7);
    border-bottom: 1px solid #181818;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    border-radius: 0 0 10px 10px;
}

.playing__art img {
    width: 70px;
    height: 70px;
    border-bottom-left-radius: 10px;
}

.playing__song {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-left: 15px;
    display: flex;
    flex-flow: column wrap;
}

.playing__song a:hover {
    color: white;
}

.playing__song__name{
    font-weight: bold;
    display: inline-block;
    position: relative;
    transition: transform 0.1 linear;
    color: white;
}

.sound-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 12px;
    margin-right: 10px;
}

.sound-bar {
    width: 2px;
    background-color: #1ed760;
    animation: soundBounce 0.8s ease-in-out infinite;
}

.sound-bar:nth-child(1) { height: 8px;  animation-delay: 0s; }
.sound-bar:nth-child(2) { height: 12px; animation-delay: 0.2s; }
.sound-bar:nth-child(3) { height: 8px;  animation-delay: 0.4s; }

@keyframes soundBounce {
    0%, 100% { transform: scaleY(0.8); }
    50% { transform: scaleY(1); }
}

.playing__song__artist{
    color: #aaaaaa;
}

.playing__add {
    margin-left: auto;
    padding-right: 15px;
    color: #aaaaaa;
}

@media (max-width: 768px) {
    .playing {
        border-top: 1px solid #181818;
    }
}

.sebify-loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.sebify-loading-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    animation: pulse 1.5s infinite ease-in-out;
}

.sebify-loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(30, 215, 96, 0.3);
    border-radius: 50%;
    border-top-color: #1ed760;
    animation: spin 1s infinite linear;
}

.sebify-loading-text {
    margin-top: 20px;
    color: #b3b3b3;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sebify-fade-out {
    opacity: 0;
    pointer-events: none;
}

.current-track {
    background: #000;
    padding: 30px 15px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    /* position: sticky; */
}

.current-track__actions {
    width: 5%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.current-track__actions a {
    font-size: 24px;
    color: #c8c8c8;
}

.current-track__actions a:hover {
    color: white;
}

.current-track__actions .play {
    font-size: 36px;
}

.current-track__progress {
    width: 70%;
    padding: 0 30px;
    font-size: 11px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}

.current-track__progress__bar {
    width: 100%;
    padding: 0 15px;
}

.current-track__progress__bar .noUi-target {
    border: none;
    height: 4px;
}

.current-track__progress__bar .noUi-base {
    border-radius: 100px;
    background: #5e5e5e;
}

.current-track .noUi-horizontal .noUi-handle {
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 100%;
}

.current-track .noUi-connect{
    border-radius: 100px;
    background-color: #1ed760
}

.current-track__progress__bar .noUi-handle:before,
.current-track__progress__bar .noUi-handle:after {
    background: none;
}

.current-track__options {
    width: 25%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.current-track__options .lyrics {
    font-size: 11px;
    width: 15%;
    padding: 0 15px 0 0;
}

.current-track__options .controls {
    width: 85%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.current-track__options .controls .devices:hover {
    text-decoration: none;
}

.current-track__options .controls .devices i {
    margin-right: 5px;
}

.current-track__options .controls .devices span {
    font-size: 11px;
}

.current-track__options .controls .volume {
    width: 25%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.current-track__options .controls .volume i {
    width: 20px;
    color: #aaaaaa;
}

.current-track__options .controls .volume #song-volume {
    width: calc(80% - 20px);
    border: none;
    background-color: #5e5e5e;
    height: 4px;
    border-radius: 50px;
}

.current-track__options .controls .volume #song-volume .noUi-handle {
    background-color: #c8c8c8;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: none;
    border: none;
    margin-top: 2px;
    left: 100%;
}

.current-track__options .controls .volume #song-volume .noUi-handle:hover {
    background-color: #ffffff;
}

.current-track__options .controls .volume #song-volume .noUi-handle:before,
.current-track__options .controls .volume #song-volume .noUi-handle:after {
    background: none;
}

@media (max-width: 1400px) {
    .current-track__actions {
        width: 10%;
    }

    .current-track__progress {
        width: 50%;
    }

    .current-track__options {
        width: 40%;
    }
}

@media (max-width: 980px) {
    .current-track__actions {
        width: 10%;
    }

    .current-track__progress {
        width: 40%;
    }

    .current-track__options {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .current-track__actions {
        width: 25%;
    }

    .current-track__progress {
        width: 75%;
    }

    .current-track__options {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .current-track__actions {
        width: 100%;
        justify-content: space-around;
        padding: 5px 0;
    }

    .current-track__progress {
        width: 100%;
        padding: 5px 0;
    }

    .current-track__options {
        width: 100%;
        padding: 5px 0;
    }
}

@media (max-width: 768px) {
    .current-track__action {
        padding-top: 15px;
    }
}

.artist {
    height: 617px;
    overflow-y: scroll;
}

.artist__header {
    height: 320px;
    border-bottom: 1px solid #282828;
    border-radius: 5px 5px 0 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.artist__header:before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    background: linear-gradient(to bottom, rgb(213, 171, 122), rgb(188, 92, 44));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.artist__header .artist__info {
    padding: 15px;
    z-index: 1;
    width: 80%;
    margin-top: 78px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
}

.artist__header .artist__info .profile__img {
    margin-right: 15px;
}

.artist__header .artist__info .profile__img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.artist__header .artist__info__type {
    color: #aaaaaa;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.artist__header .artist__info__name {
    color: white;
    font-size: 36px;
    font-weight: 100;
    padding: 0 0 10px 0;
}

.artist__header .artist__info__actions {
    display: flex;
    flex-flow: row wrap;
}

.artist__header .artist__info__actions button {
    margin-right: 10px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 0 15px;
    font-weight: 500;
}

.artist__header .artist__info__actions button i {
    font-size: 20px;
}

.artist__header .artist__info__actions .more {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    padding: 0;
    text-align: center;
}

.artist__header .artist__info__actions .more i {
    margin: 0;
    padding-left: 6px;
}

.artist__header .artist__listeners {
    width: 20%;
    z-index: 1;
    padding: 15px;
    text-align: right;
    color: #aaaaaa;
    font-weight: 100;
    font-size: 16px;
    letter-spacing: 1px;
}

.artist__header .artist__listeners__label {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.artist__header .artist__navigation {
    width: 100%;
    z-index: 1;
    background: rgba(24, 24, 24, 0.6);
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.artist__header .artist__navigation ul {
    border: none;
}

.artist__header .artist__navigation ul li {
    padding: 0 15px;
}

.artist__header .artist__navigation ul li a {
    padding: 15px 0;
    color: #aaaaaa;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border-bottom: 4px solid rgba(0, 0, 0, 0);
}

.artist__header .artist__navigation ul li a:hover {
    background: none;
    border: none;
    color: white;
    transition: all 0.4s ease;
    border-bottom: 4px solid rgba(0, 0, 0, 0);
}

.artist__header .artist__navigation ul li.active a {
    color: white;
    background: none;
    border: none;
    border-bottom: 4px solid #1ed760;
}

.artist__header .artist__navigation ul li.active a:hover {
    border-bottom: 4px solid #1ed760;
}

.artist__header .artist__navigation__friends {
    padding: 15px;
}

.artist__header .artist__navigation__friends img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    margin-right: -10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.9);
}

.artist__header .artist__navigation__friends .tooltip {
    z-index: 1;
    position: absolute;
}

.artist.is-verified .profile__img {
    position: relative;
}

.artist.is-verified .profile__img:after {
    content: "";
    position: absolute;
    bottom: 5px;
    right: 25px;
    background: url(https://static.vecteezy.com/system/resources/thumbnails/047/309/930/small/verified-badge-profile-icon-png.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
}

.artist__content {
    padding: 15px;
    background-image: linear-gradient(to bottom, rgba(134, 68, 35, 0.1), #181818);
    border-radius: 0 0 5px 5px;
}

.artist__content .overview {
    display: flex;
    flex-flow: row wrap;
}

.artist__content .overview__artist {
    padding-right: 15px;
    width: 70%;
}

.artist__content .overview__artist .latest-release {
    margin-bottom: 30px;
    display: flex;
    flex-flow: row wrap;
}

.artist__content .overview__artist .latest-release__art {
    width: 75px;
}

.artist__content .overview__artist .latest-release__art img {
    width: 75px;
    height: 75px;
    border-radius: 2px 0 0 2px;
}

.artist__content .overview__artist .latest-release__song {
    width: calc(100% - 75px);
    padding: 10px 15px;
    background: rgba(40, 40, 40, 0.4);
    color: #aaaaaa;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    border-radius: 2px;
}

.artist__content .overview__artist .latest-release__song__title {
    color: #c8c8c8;
}

.artist__content .overview__related {
    width: 30%;
}

@media (max-width: 1024px) {
    .artist__content .overview__artist {
        width: 100%;
    }

    .artist__content .overview__related {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .artist__content .overview__artist {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .artist {
        overflow-y: auto;
    }
}

@media (max-width: 522px) {
    .artist__header {
        height: auto;
        flex-flow: column wrap;
    }

    .artist__header .artist__info {
        margin-top: 0;
        width: 100%;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        text-align: center;
    }

    .artist__header .artist__info .profile__img {
        margin-right: 0;
    }

    .artist__header .artist__info__type {
        margin-top: 10px;
    }

    .artist__header .artist__listeners {
        width: 100%;
        text-align: center;
    }
}

.tracks {
    display: flex;
    flex-flow: column wrap;
    margin-bottom: 15px;
}

.tracks__heading {
    color: #aaaaaa;
    height: 42px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.tracks__heading__number {
    margin-left: 10px;
    font-style: italic;
}

.tracks__heading__title {
    margin-left: 70px;
    width: 45%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tracks__heading__length {
    margin-left: auto;
    font-size: 20px;
}

.tracks__heading__popularity {
    font-size: 20px;
    margin-left: 55px;
    padding-right: 10px;
}

.tracks .track {
    border-top: 1px solid #282828;
    height: 42px;
    display: flex;
    align-items: center;
}

.tracks .track:hover {
    background: #282828;
}

.tracks .track:last-child {
    border-bottom: 1px solid #282828;
}

.tracks .track__art img {
    width: 42px;
    height: 42px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 2px;
    /* border-radius: 4px; */
}

.tracks .track__number {
    margin-left: 10px;
    color: #aaaaaa;
    width: 12px;
}

.tracks .track__added {
    margin-left: 30px;
    color: #c8c8c8;
}

.tracks .track__added .added {
    color: #c8c8c8;
}

.tracks .track__added .not-added {
    color: #aaaaaa;
}

.tracks .track__title {
    width: 45%;
    margin-left: 30px;
    color: white;
}

.tracks .track__title.featured .title:after {
    content: "-";
    margin: 0 5px;
}

.tracks .track__title.featured .feature {
    color: #aaaaaa;
}

.tracks .track__title.featured .feature:after {
    content: ",";
    margin-right: 5px;
}

.tracks .track__title.featured .feature:last-child:after {
    content: "";
    margin-right: 0;
}

.tracks .track__title.featured .feature:hover {
    color: #c8c8c8;
    text-decoration: underline;
}

.tracks .track__explicit .label {
    border: 1px;
    border-style: solid;
    border-color: #424242;
    color: #424242;
}

.tracks .track__plays {
    color: #aaaaaa;
    margin-left: auto;
    padding-right: 10px;
}

.tracks .track__length {
    margin-left: auto;
    color: #aaaaaa;
}

.tracks .track__popularity {
    margin-left: 46px;
    padding-right: 10px;
    font-size: 20px;
    color: #aaaaaa;
}

@media (max-width: 1200px) {
    .tracks__heading__title {
        width: auto;
    }

    .tracks__heading__popularity {
        display: none;
    }

    .tracks .track__title {
        width: auto !important;
    }

    .tracks .track__explicit {
        display: none;
    }

    .tracks .track__popularity {
        display: none;
    }
}

.related-artists {
    display: flex;
    flex-flow: column wrap;
}

.related-artists .related-artist {
    background: rgba(40, 40, 40, 0.4);
    padding: 5px;
    margin-bottom: 2px;
    border-radius: 5px;
}

.related-artists .related-artist:hover {
    background: #373737;
    text-decoration: none;
}

.related-artists .related-artist__img img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.related-artists .related-artist__name {
    margin-left: 15px;
    color: white;
}

@media (max-width: 1024px) {
    .related-artists {
        flex-flow: row wrap;
    }

    .related-artists .related-artist {
        margin: 10px;
        width: calc((100% / 3) - 20px);
    }
}

@media (max-width: 768px) {
    .related-artists .related-artist {
        margin: 5px;
        width: calc((100% / 2) - 10px);
    }
}

@media (max-width: 480px) {
    .related-artists .related-artist {
        margin: 5px;
        width: 20%;
        background: none;
    }

    .related-artists .related-artist:hover {
        background: none;
        opacity: 0.6;
    }

    .related-artists .related-artist__name {
        display: none;
    }
}

.overview__albums {
    width: 100%;
    margin-top: 30px;
}

.overview__albums__head {
    border-bottom: 1px solid #282828;
    margin-bottom: 10px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.overview__albums__head .view-type {
    color: white;
    margin-bottom: 4px;
}

.overview__albums__head .view-type .active {
    background: #282828;
    padding: 8px;
    border-radius: 50%;
}

.overview__albums__head .view-type i {
    padding: 8px;
    border-radius: 50%;
}

.overview__albums__head .view-type i:hover {
    padding: 8px;
    border-radius: 50%;
    background: #353535;
}

.album__info {
    margin-bottom: 15px;
    display: flex;
    flex-flow: row wrap;
}

.album__info__art img {
    width: 135px;
    height: 135px;
}

.album__info__meta {
    width: calc(100% - 150px);
    margin-left: 15px;
    display: flex;
    flex-flow: column wrap;
}

.album__info__meta .album__year {
    color: #aaaaaa;
    letter-spacing: 1px;
}

.album__info__meta .album__name {
    color: white;
    font-size: 30px;
    font-weight: 100;
}

.album__info__meta .album__meta {
    color: #aaaaaa;
}

.album__info__meta .album__actions {
    margin-top: auto;
}

.album__info__meta .album__actions .save {
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 10px;
}

.album__info__meta .album__actions .save:hover {
    border-color: #1ed760;
    color: #1ed760;
}

.album__info__meta .album__actions .more {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    padding: 0;
    text-align: center;
}

.album .track__title {
    width: 70%;
}

@media (max-width: 1200px) {
    .album .tracks .track {
        height: auto;
        padding: 10px 0;
    }
}

/* Artist About Section Styles */
.artist-about-container {
    padding: 0;
    color: #fff;
    font-family: 'Circular', Helvetica, Arial, sans-serif;
}

.artist-banner {
    overflow: hidden;
    margin-bottom: 24px;
}

.artist-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-stats-container {
    margin-bottom: 32px;
}

.artist-stats-row {
    display: flex;
    gap: 48px;
}

.artist-stat {
    display: flex;
    flex-direction: column;
}

.artist-stat-rank {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    background-color: #0A5EB0;
    align-items: center;
}

.stats-number-rank {
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
}

.stats-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stats-label {
    font-size: 14px;
    color: #b3b3b3;
}

.stats-name {
    font-size: 40px;
    color: #fff;
    margin-bottom: 4px;
    font-weight: bolder;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.artist-content-container {
    display: flex;
    gap: 32px;
}

.artist-main-content {
    flex: 2;
}

.artist-sidebar {
    flex: 1;
}

.bio-text {
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3;
    margin-bottom: 32px;
}

.top-cities-card {
    background-color: #181818;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.top-cities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-cities li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #282828;
}

.top-cities li:last-child {
    border-bottom: none;
}

.city-name {
    font-size: 14px;
    color: #fff;
}

.listener-count {
    font-size: 14px;
    color: #b3b3b3;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-link img{
    width: 30px;
    height: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .artist-content-container {
        flex-direction: column;
    }

    .artist-sidebar {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .artist-stats-row {
        flex-direction: column;
        gap: 16px;
    }

    .social-links {
        justify-content: center;
    }
}

.social {
    padding: 15px;
    text-align: center;
    overflow-y: scroll;
    border-radius: 5px;
    background-color: #181818;
}

.social .friends {
    display: flex;
    flex-flow: column wrap;
    margin-bottom: 15px;
}

.social .friends .friend {
    padding: 15px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.social .friends .friend:first-child {
    padding-top: 0;
}

.social .friends .friend i {
    font-size: 20px;
    margin-right: 15px;
}

.friend-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.media-cards {
    display: flex;
    flex-flow: row wrap;
}

.media-cards .media-card {
    border-radius: 15px;
    width: calc((100% / 4) - 30px);
}

.media-cards .media-card:hover {
    background-image: linear-gradient(to bottom, #282828, #181818);
}

.media-cards .media-card__image {
    height: 200px;
    width: 200px;
    margin: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    border-radius: 100%;
}

.media-cards .media-card__image i {
    font-size: 56px;
    margin: 120px 0 0 auto;
    opacity: 0;
    transition: all 0.5s ease;
    text-shadow: 1px 5px 15px #181818;
}

.media-cards .media-card__image:hover i {
    opacity: 1;
    transition: all 0.5s ease;
}

.media-cards .media-card__footer {
    font-weight: bold;
    padding: 15px;
    color: white;
}

.media-cards .media-card-tag {
    padding: 15px;
    color: #aaaaaa;
}

@media (max-width: 1100px) {
    .media-cards .media-card {
        width: calc((100% / 3) - 30px);
    }
}

@media (max-width: 768px) {
    .media-cards .media-card {
        width: calc((100% / 2) - 30px);
    }
}

@media (max-width: 480px) {
    .media-cards .media-card {
        margin: 15px 0;
        width: 100%;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #373737;
}

@media (max-width: 650px) {
    .header .window__actions {
        width: 15%;
    }

    .header .page-flows {
        width: 20%;
        margin: 0;
    }

    .header .search {
        width: 65%;
        margin: 0;
    }

    .header .search input {
        width: 100%;
        background-size: 7%;
    }

    .header .user {
        width: 100%;
        margin-top: 15px;
        justify-content: space-around;
    }
}

.h1 {
    font-size: 36px;
}

.h2,
.navigation__list__header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.red {
    color: #fc615c;
}

.red:hover {
    color: #fb302a;
}

.yellow {
    color: #fdbe41;
}

.yellow:hover {
    color: #fcad0f;
}

.green {
    color: #34c94a;
}

.green:hover {
    color: #2aa03b;
}

button {
    border-radius: 20px;
    border: none;
    padding: 5px 15px;
    letter-spacing: 1px;
    font-size: 11px;
    outline: none;
    cursor: url('resources/customCursor.ico'),auto;
}

.button-dark {
    height: 46px;
    background: #1ed760;
    color: white;
    border: none;
    border-radius: 50px;
}

.button-dark:hover {
    background: #43e57d;
}

.button-light {
    height: 27px;
    background: none;
    color: #c8c8c8;
    border: 1px solid #c8c8c8;
    margin-top: 10px;
}

.button-light:hover {
    border-color: white;
    color: white;
}

.button-light.active {
    color: #c8c8c8;
    border: 1px solid #c8c8c8;
}

.section-title {
    text-transform: uppercase;
    color: #aaaaaa;
    letter-spacing: 1.25px;
    font-size: 13.2px;
    margin-bottom: 10px;
}

/* ad-guard */
img[src="https://tiiny.host/assets/img/ad.png"] {
    display: none !important;
}