/* Block Basic */
.rf-home-section {
    position: relative;
    margin: 28px 0;
}

.rf-home-section:first-child {
    margin-top: 0;
}

.rf-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.rf-section-note {
    display: block;
    margin-bottom: 7px;
    color: #ff7b38;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.rf-section-title {
    position: relative;
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.rf-section-title i {
    color: #ff7b38;
    margin-right: 8px;
}


/* Block Releases */
.rf-release-home {
    position: relative;
    width: 100%;
    overflow: visible;
}

.rf-release-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.rf-release-all {
    flex-shrink: 0;
}

.rf-release-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.rf-release-column {
    min-width: 0;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(0, 0, 0, .18));
    border: 1px solid rgba(255, 255, 255, .075);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .22);
}

.rf-release-card {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0;
    min-width: 0;
    min-height: 112px;
    margin: 0;
    padding: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, .045), rgba(0, 0, 0, .14));
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.rf-release-card:last-child {
    border-bottom: 0;
}

.rf-release-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff7b38, #b31313);
    opacity: .55;
    transition: opacity .2s ease, width .2s ease;
}

.rf-release-card:hover {
    background: linear-gradient(110deg, rgba(255, 123, 56, .09), rgba(0, 0, 0, .18));
    box-shadow: inset 0 0 0 1px rgba(255, 123, 56, .16);
}

.rf-release-card:hover::before {
    width: 4px;
    opacity: 1;
}

.rf-release-cover {
    position: relative;
    display: block;
    width: 112px;
    height: 112px;
    overflow: hidden;
    background: #111;
    text-decoration: none;
}

.rf-release-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, .62), rgba(0, 0, 0, .08) 58%, transparent),
        radial-gradient(circle at 70% 20%, rgba(255, 123, 56, .18), transparent 36%);
    z-index: 2;
    pointer-events: none;
}

.rf-release-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

.rf-release-card:hover .rf-release-cover img {
    transform: scale(1.06);
    filter: brightness(1.08) contrast(1.05);
}

.rf-release-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-left: -19px;
    margin-top: -19px;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transform: scale(.82);
    transition: opacity .2s ease, transform .2s ease;
    text-shadow: 0 6px 18px rgba(0, 0, 0, .75);
    pointer-events: none;
}

.rf-release-card:hover .rf-release-play {
    opacity: 1;
    transform: scale(1);
}

.rf-release-info {
    display: block;
    min-width: 0;
    padding: 10px 12px;
    color: inherit;
    text-decoration: none;
}

.rf-release-title,
.rf-release-band,
.rf-release-genre,
.rf-release-date {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rf-release-title {
    color: #f4f6fb;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

.rf-release-title span {
    color: #aeb4c2;
    font-weight: 700;
}

.rf-release-band {
    margin-top: 6px;
    color: #d9dde7;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.rf-release-genre {
    margin-top: 5px;
    color: #aeb4c2;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.rf-release-date {
    margin-top: 5px;
    color: #858c9b;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

.rf-release-title i,
.rf-release-band i,
.rf-release-genre i {
    width: 16px;
    margin-right: 4px;
    color: #ff7b38;
    text-align: center;
}

.rf-release-user {
    position: relative;
    z-index: 2;
    max-width: 105px;
    margin-right: 10px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .38);
    color: #d7dbe5;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .08);
}

.rf-release-user a {
    color: #d7dbe5;
    text-decoration: none;
}

.rf-release-user a:hover {
    color: #fff;
}

.new-badge-left,
.new-badge-right {
    position: absolute;
    padding: 2px 4px;
    font-size: 9px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #b10000, #d11414);
    border-radius: 3px;
    z-index: 100;
}

.new-badge-left {
    top: 0;
    left: 1px;
}

.new-badge-right {
    top: 7px;
    left: 10px;
}

.rf-release-cover .new-badge-left,
.rf-release-cover .new-badge-right {
    z-index: 6;
}


/* Block Video / Bio Tiles */
.rf-home-duo-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.rf-home-duo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.rf-home-panel {
    min-width: 0;
    margin: 0;
}

.rf-home-panel .sect-header {
    margin-bottom: 12px;
}

.rf-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
}

.rf-tile-card {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.rf-tile-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

.rf-tile-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / .78;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    transform: translateZ(0);
}

.rf-tile-grid-bio .rf-tile-cover {
    aspect-ratio: 1 / .9;
}

.rf-tile-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(255, 123, 56, .16), transparent 36%),
        linear-gradient(to top, rgba(0, 0, 0, .92), rgba(0, 0, 0, .2) 52%, rgba(0, 0, 0, .02));
    opacity: .95;
    pointer-events: none;
    transition: opacity .25s ease;
}

.rf-tile-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .55) 28%, rgba(0, 0, 0, .05) 68%, transparent 100%);
    pointer-events: none;
}

.rf-tile-link:hover .rf-tile-cover {
    filter: brightness(1.07) contrast(1.04);
}

.rf-tile-link:hover .rf-tile-cover::before {
    opacity: .75;
}

.rf-tile-info {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.rf-tile-info-simple {
    display: block;
}

.rf-tile-mini {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
}

.rf-tile-mini img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rf-tile-text {
    min-width: 0;
    flex: 1;
}

.rf-tile-title {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
}

.rf-tile-subtitle {
    margin-top: 4px;
    color: #d9dde7;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
}

.rf-tile-meta {
    margin-top: 5px;
    color: #bfc5d2;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
}

.rf-tile-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 5;
    max-width: calc(100% - 58px);
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .58);
    color: antiquewhite;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .04em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .1);
}

.rf-tile-youtube {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 5;
    width: 32px;
    height: 23px;
    background-image: url('/interface/images/youtube_logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .95;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .55));
    pointer-events: none;
}

.rf-tile-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    border-right: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.rf-tile-link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 7;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .12), transparent 65%);
    transform: translateX(-120%);
    transition: transform .45s ease;
}

.rf-tile-link:hover::after {
    transform: translateX(120%);
}


/* Block Reviews */
.rf-review-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.rf-review-card {
    min-width: 0;
}

.rf-review-link {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .105);
    border-radius: 10px;
    background: rgba(255, 255, 255, .045);
    transition: transform .22s ease, border-color .22s ease;
}

.rf-review-link:hover {
    border-color: rgba(255, 123, 56, .45);
}

.rf-review-image {
    position: relative;
    aspect-ratio: 1 / 1.22;
    background-position: center;
    background-size: cover;
    background-color: #151820;
}

.rf-review-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, .95), rgba(0, 0, 0, .18) 66%, transparent),
        radial-gradient(circle at 70% 20%, rgba(255, 123, 56, .18), transparent 30%);
}

.rf-review-score {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 24px);
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rf-review-info {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
}

.rf-review-title {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rf-review-author {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    color: #d7dbe5;
    font-size: 11px;
    font-weight: 700;
}

.rf-review-author i {
    color: #ff7b38;
}

/* Block Custom Albums */
.custom-album-home-container {
    display: flex;
    gap: 20px;
    width: 100%;
}

.custom-album-home-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.custom-album-home-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    border-left: 5px solid red;
}

.custom-album-home-divider {
    border: none;
    border-top: 1px dotted gray;
}

.custom-album-home-icon {
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    transition: transform 0.5s, background-color 0.5s;
}

.custom-album-home-row:hover .custom-album-home-icon {
    transform: rotate(360deg);
    color: red;
}

.custom-album-home-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.custom-album-home-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.custom-album-home-meta {
    font-size: 0.9em;
    color: gray;
}


/* Block Popular */
.rf-popular-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 13px;
}

.rf-popular-card {
    min-width: 0;
}

.rf-popular-card.is-large {
    grid-row: span 2;
}

.rf-popular-link {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .105);
    border-radius: 20px;
    transition: transform .22s ease, border-color .22s ease;
}

.rf-popular-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

.rf-popular-link:hover .rf-popular-cover {
    transform: scale(1.055);
    filter: brightness(1.07) contrast(1.05);
}

.rf-popular-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, .92), rgba(0, 0, 0, .1) 64%, transparent),
        radial-gradient(circle at 80% 20%, rgba(255, 123, 56, .18), transparent 30%);
}

.rf-popular-info {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
}

.rf-popular-views {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .52);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.rf-popular-views i {
    color: #ff7b38;
}

.rf-popular-title,
.rf-popular-band {
    overflow: hidden;
    text-overflow: ellipsis;
}

.rf-popular-title {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.is-large .rf-popular-title {
    font-size: 24px;
}

.rf-popular-band {
    margin-top: 6px;
    color: #d4d8e2;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.is-large .rf-popular-band {
    font-size: 14px;
}


/* Block Statistic */
.statistics-statistic {
    color: #fff;
    margin: 0 auto;
    padding-bottom: 20px;
}

.statistic-container-statistic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.statistic-header-statistic {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.statistic-header-statistic i {
    margin-right: 8px;
    color: #e21b1b;
    border-left: 2px solid red;
    padding-left: 20px;
}

.statistic-grid-statistic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 30px;
}

.statistic-card-statistic {
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.01);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.statistic-card-statistic i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #cccccc;
}

.statistic-title-statistic {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 2px;
}

.statistic-value-statistic {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
}

.user-list-statistic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-item-statistic {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

.user-item-title-statistic {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 8px;
}

.user-item-title-statistic i {
    margin-right: 8px;
    color: #cccccc;
}

.user-lines-statistic {
    margin-left: 20px;
}

.user-line-statistic {
    display: flex;
    align-items: center;
    border-bottom: 1px dotted #34323d;
    padding: 10px 0;
}

.user-avatar-statistic {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.user-line-statistic b {
    padding: 5px 10px;
}


/* Block Online */
.user-block {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: none;
}

.user-block ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    color: #f5f5f5;
}

.user-block .online-users {
    display: flex;
    gap: 5px;
}

.user-block .guest-info {
    color: #99aab5;
    font-size: 16px;
    margin: 10px 0;
    border-top: 1px solid #242222;
    padding-top: 10px;
    display: block;
}

.user-block .guest-count {
    display: inline-block;
    color: #fff;
    border-radius: 50%;
    padding: 5px 12px;
    font-weight: bold;
    margin-left: 5px;
    font-size: 18px;
    background: linear-gradient(to right, #212124, #1d1f20);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Block Adaptive */
@media screen and (max-width: 1200px) {
    .rf-home-duo-row {
        gap: 18px;
    }

    .rf-tile-title {
        font-size: 13px;
    }

    .rf-tile-subtitle {
        font-size: 11px;
    }

    .rf-tile-meta {
        font-size: 10px;
    }

    .rf-tile-mini {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .rf-release-board {
        gap: 14px;
    }

    .rf-release-card {
        grid-template-columns: 100px minmax(0, 1fr);
        min-height: 100px;
    }

    .rf-release-cover {
        width: 100px;
        height: 100px;
    }

    .rf-release-user {
        grid-column: 2;
        justify-self: start;
        max-width: calc(100% - 22px);
        margin: -4px 10px 9px 12px;
        padding: 4px 7px;
    }

    .rf-release-info {
        padding: 9px 10px 6px 12px;
    }

    .rf-release-title {
        font-size: 13px;
    }

    .rf-release-band {
        font-size: 12px;
    }

    .rf-release-genre,
    .rf-release-date {
        font-size: 11px;
    }
}

@media screen and (max-width: 980px) {
    .rf-home-duo-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rf-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rf-tile-cover {
        aspect-ratio: 1 / .82;
    }

    .rf-tile-grid-bio .rf-tile-cover {
        aspect-ratio: 1 / .9;
    }

    .rf-release-board {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rf-release-card {
        grid-template-columns: 106px minmax(0, 1fr) auto;
        min-height: 106px;
    }

    .rf-release-cover {
        width: 106px;
        height: 106px;
    }

    .rf-release-user {
        grid-column: auto;
        justify-self: auto;
        max-width: 100px;
        margin: 0 10px 0 0;
        padding: 6px 8px;
    }

    .rf-review-grid {
        grid-template-columns: 1fr;
    }

    .rf-review-image {
        aspect-ratio: 1 / 1.05;
    }

    .custom-album-home-column,
    .custom-album-home-container {
        display: block;
        width: 100%;
    }

    .statistic-container-statistic {
        display: block;
    }

    .rf-popular-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 165px;
        gap: 10px;
    }
}

@media screen and (max-width: 620px) {
    .rf-release-head {
        align-items: flex-start;
        gap: 10px;
    }

    .rf-release-board {
        gap: 14px;
    }

    .rf-release-card {
        grid-template-columns: 100px minmax(0, 1fr);
        min-height: 100px;
    }

    .rf-release-user {
        position: absolute;
        bottom: 5px;
        right: 5px;
    }

    .rf-release-info {
        padding: 8px 9px 5px 10px;
    }

    .rf-release-title {
        font-size: 12px;
    }

    .rf-release-band,
    .rf-release-genre,
    .rf-release-date {
        font-size: 10px;
    }

    .rf-release-user {
        grid-column: 2;
        justify-self: start;
        max-width: calc(100% - 18px);
        margin: -2px 8px 8px 10px;
        padding: 4px 7px;
        font-size: 10px;
    }

    .rf-release-play {
        width: 30px;
        height: 30px;
        margin-left: -15px;
        margin-top: -15px;
        font-size: 24px;
    }
}

@media screen and (max-width: 520px) {
    .rf-home-duo-wrap {
        gap: 22px;
    }

    .rf-home-duo-row {
        gap: 20px;
    }

    .rf-tile-grid {
        border-radius: 10px;
    }

    .rf-tile-cover,
    .rf-tile-grid-bio .rf-tile-cover {
        aspect-ratio: 1 / 1.05;
    }

    .rf-tile-info {
        left: 8px;
        right: 8px;
        bottom: 8px;
        gap: 7px;
    }

    .rf-tile-mini {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }

    .rf-tile-title {
        font-size: 12px;
    }

    .rf-tile-subtitle,
    .rf-tile-meta {
        font-size: 10px;
    }

    .rf-tile-badge {
        left: 7px;
        top: 7px;
        max-width: calc(100% - 48px);
        padding: 4px 6px;
        font-size: 8px;
    }

    .rf-tile-youtube {
        right: 7px;
        top: 7px;
        width: 27px;
        height: 19px;
    }
}

@media screen and (max-width: 380px) {
    .rf-release-card {
        grid-template-columns: 78px minmax(0, 1fr);
        min-height: 78px;
    }

    .rf-release-cover {
        width: 78px;
        height: 78px;
    }

    .rf-release-genre {
        display: none;
    }

    .rf-release-title {
        font-size: 11px;
    }

    .rf-release-band,
    .rf-release-date {
        font-size: 10px;
    }
}

@media screen and (max-width: 365px) {
    .rf-tile-title {
        font-size: 11px;
    }

    .rf-tile-subtitle,
    .rf-tile-meta {
        font-size: 9px;
    }

    .rf-tile-info {
        left: 7px;
        right: 7px;
        bottom: 7px;
    }

    .rf-tile-mini {
        display: none;
    }

    .custom-album-home-container {
        display: block;
        width: 100%;
    }

    .custom-album-home-column {
        display: block;
        width: 100%;
    }

    .custom-album-home-row {
        padding: 9px 0;
        border-left-width: 3px;
    }

    .custom-album-home-icon {
        width: 50px;
        font-size: 1.35em;
        flex-shrink: 0;
    }

    .custom-album-home-content {
        min-width: 0;
        padding-right: 8px;
    }

    .custom-album-home-title {
        font-size: 13px;
        line-height: 1.3;
    }

    .custom-album-home-meta {
        font-size: 12px;
        line-height: 1.35;
    }

    .statistics-statistic {
        padding-bottom: 15px;
    }

    .statistic-container-statistic {
        display: block;
    }

    .statistic-header-statistic {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .statistic-header-statistic i {
        padding-left: 10px;
    }

    .statistic-grid-statistic {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 18px;
    }

    .statistic-card-statistic {
        padding: 10px;
    }

    .statistic-card-statistic i {
        font-size: 1.25rem;
    }

    .statistic-title-statistic {
        font-size: 12px;
    }

    .statistic-value-statistic {
        font-size: 16px;
    }

    .user-list-statistic {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .user-item-statistic {
        padding: 10px;
    }

    .user-item-title-statistic {
        font-size: 14px;
    }

    .user-lines-statistic {
        margin-left: 0;
    }

    .user-line-statistic {
        padding: 8px 0;
    }

    .user-block .online-users {
        flex-wrap: wrap;
    }

    .user-block .guest-info {
        font-size: 13px;
    }

    .user-block .guest-count {
        padding: 4px 9px;
        font-size: 14px;
    }

    .new-badge-left,
    .new-badge-right {
        font-size: 8px;
        padding: 2px 3px;
    }
}

@media screen and (min-width: 1080px) and (max-width: 1160px) and (max-height: 700px) {
    .custom-album-home-container {
        gap: 12px;
    }

    .custom-album-home-row {
        padding: 8px 0;
    }

    .custom-album-home-icon {
        width: 58px;
        font-size: 1.5em;
    }

    .custom-album-home-title {
        font-size: 13px;
    }

    .custom-album-home-meta {
        font-size: 12px;
    }

    .statistic-container-statistic {
        gap: 8px;
    }

    .statistic-grid-statistic {
        gap: 5px;
        margin-bottom: 18px;
    }

    .statistic-card-statistic,
    .user-item-statistic {
        padding: 9px;
    }

    .statistic-title-statistic {
        font-size: 12px;
    }

    .statistic-value-statistic {
        font-size: 16px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1300px) and (max-height: 820px) {
    .custom-album-home-container {
        gap: 14px;
    }

    .custom-album-home-icon {
        width: 64px;
        font-size: 1.65em;
    }

    .statistic-grid-statistic {
        margin-bottom: 22px;
    }

    .statistic-card-statistic,
    .user-item-statistic {
        padding: 10px;
    }
}

@media screen and (min-width: 340px) and (max-width: 380px) and (max-height: 760px) {
    .custom-album-home-icon {
        width: 46px;
    }
}