.album-cover {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 8px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8);
}

.album-details {
    display: flex;
    flex-direction: column;
    margin-right: auto;
}

.album-info {
    display: flex;
    align-items: center;
}

.album-info-preview {
    filter: brightness(110%);
    border-radius: 1%;
}

.one-letter {
    color: #d2cece;
    font-size: 15.5px;
    line-height: 1.9;
    font-weight: 100;
    position: relative;
    z-index: 1;
}

.one-letter::first-letter {
    font-size: 3em;
    font-weight: bold;
    color: #ff6347;
    float: left;
    margin: 7px 5px -2px 0;
    line-height: 1;
}

.album-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.artist-name {
    font-size: 17px;
    color: #bdbdbd;
    font-weight: bold;
}

.artist-name a {
    color: #f5f5f5;
    font-weight: 100;
}

.button-thanks {
    background-color: #28a745;
    color: white;
    border: none;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    display: inline-block;
}

.button-thanks:hover {
    background-color: #218838;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.button-thanks::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.button-thanks:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.button-thanks a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 9px 14px;
}

/* Перевод */
.container-translation {
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
    display: none;
    margin: 18px 0 22px;
}

#translation-text:focus {
    border-color: rgba(164, 74, 57, 0.45);
    box-shadow: 0 0 0 4px rgba(164, 74, 57, 0.10);
}

#translation-text,
#language-select-translate {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-sizing: border-box;
}

#submit-button-translate {
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    margin-top: 10px;
    display: inline-block;
}

#submit-button-translate:hover {
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(255, 255, 255, 0.14);
}

.cover-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.2;
    filter: blur(3px);
    z-index: 0;
}

.footer-left p,
.footer-right p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-right a {
    text-decoration: none;
    color: #ff5722;
    margin: 0 0.25rem;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #ff784e;
}

.folder-top-reviews {
    margin-bottom: 10px;
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    max-width: 100%;
    min-height: 100vh;
}

.rating {
    display: flex;
    align-items: baseline;
    margin-left: 2rem;
}

.rating-scale {
    font-size: 1rem;
    color: #888888;
}

.rating-value {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 0.25rem;
    color: #ff5722;
}

.review {
    flex: 1;
    max-width: 100%;
    color: #eeeeee;
}

.review-card {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
    border-radius: 8px;
    padding: 0.5rem;
}

.review-card-cover {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.review-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.review-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.review-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888888;
}

.review-score {
    font-weight: 600;
    margin-top: 1.5rem;
    color: #ff5722;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.review-title {
    font-size: 22px;
    font-weight: 600;
    margin: 1rem 0;
    color: #ffffff;
}

.sidebar {
    position: sticky;
    top: 110px;
    align-self: flex-start;
    width: 350px;
    color: #bbbbbb;
    margin-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    min-height: inherit;
}

.sidebar h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.site-footer {
    background: linear-gradient(135deg, #151515 0%, #1c1c1c 100%);
    color: #bbbbbb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-top: 1px solid #333333;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5);
}

.site-header {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    color: #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 8px 8px;
    background: linear-gradient(135deg, #17191e, #22242b, #1a1c22);
}

.small-text {
    font-size: 0.85rem;
    color: #aaaaaa;
}

.thanks-list {
    padding: 10px 2px;
    margin-top: 10px;
    font-size: 13px;
    border-top: 1px solid #333333;
}

.translate-textarea {
    margin-bottom: 10px;
    background: transparent;
}

.translate-textarea span {
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}

.image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.text-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.marquee-content {
    position: absolute;
    white-space: nowrap;
    animation: slide-in 6s ease-out forwards;
    left: 100%;
    transform: translateX(0);
}

.telegram-player-review {
    position: absolute;
    bottom: 43px;
    border-radius: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.8);
}

.block-review-line {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 24px 26px 14px;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
}

.block-review-line::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 48%,
            #ffffff08 48%,
            #ffffff08 52%,
            transparent 52%);
    transform: rotate(25deg);
    pointer-events: none;
}

#button-add-translate-info {
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
    text-decoration: none;
    display: inline-block;
}

.col-left {
    display: none;
}

.review-translation-status {
    margin: 0 0 14px 0;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
}

.review-translation-status__row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d8d8d8;
    font-size: 13px;
    line-height: 1.45;
}

.review-translation-status__row+.review-translation-status__row {
    margin-top: 12px;
}

.review-translation-status__row--column {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.review-translation-status__label {
    color: #d9c7a3;
    font-weight: 600;
}

.review-translation-status__original {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 8px;
    color: #f2f2f2;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: 12px;
}

.review-translation-status__list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.review-translation-status__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 27px;
    padding: 4px 10px;
    border-radius: 8px;
    color: #e6e6e6;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    font-size: 12px;
}

.review-translation-status__icon {
    width: 16px;
    height: 16px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    font-style: normal;
}

.review-translation-status__pill--yes {
    border-color: rgba(46, 164, 79, .28);
    background: rgba(46, 164, 79, .08);
}

.review-translation-status__pill--yes .review-translation-status__icon {
    color: #8ee0a3;
    background: rgba(46, 164, 79, .16);
}

.review-translation-status__pill--yes .review-translation-status__icon::before {
    content: "✓";
}

.review-translation-status__pill--no {
    border-color: rgba(220, 53, 69, .28);
    background: rgba(220, 53, 69, .08);
}

.review-translation-status__pill--no .review-translation-status__icon {
    color: #ff9aa4;
    background: rgba(220, 53, 69, .15);
}

.review-translation-status__pill--no .review-translation-status__icon::before {
    content: "X";
}

/* block bio */
.release-bio-card {
    width: 320px;
    padding: 0 0 5px 0;
}

.release-bio-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.release-bio-label {
    width: fit-content;
    padding: 4px 8px;
    color: #d9c7a3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(217, 199, 163, 0.18);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.release-bio-label i {
    color: antiquewhite;
    font-size: 11px;
}

.release-bio-line {
    display: block;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 199, 163, 0.25), rgba(217, 199, 163, 0));
}

.release-bio-title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 7px;
}

.release-bio-title {
    display: block;
    color: #fff;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 500;
}

.release-bio-logo {
    position: relative;
    width: 100%;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.release-bio-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.release-bio-logo-mark {
    position: absolute;
    right: 9px;
    bottom: 9px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: antiquewhite;
    font-size: 12px;
    border-radius: 50%;
    border: 1px solid rgba(250, 235, 215, 0.24);
    background: rgba(0, 0, 0, 0.42);
}

.release-bio-text-wrap {
    position: relative;
    padding-left: 17px;
    border-left: 2px solid rgba(255, 165, 0, 0.35);
}

.release-bio-quote {
    position: absolute;
    top: -13px;
    left: 6px;
    color: rgba(255, 255, 255, 0.15);
    font-size: 42px;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.release-bio-text {
    color: #d8d8d8;
    font-size: 0.88em;
    line-height: 1.55;
}

.release-bio-bottom {
    border-bottom: 1px dotted brown;
    margin-top: 15px;
    margin-bottom: 15px;
}

.release-bio-more {
    margin-top: 5px;
}

.anim {
    text-align: center;
}

@keyframes slide-in {
    0% {
        left: 100%;
        transform: translateX(0);
    }

    100% {
        left: 25px;
        transform: translateX(-3%);
    }
}

@media (max-width: 960px) {
    .album-cover {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .album-details {
        margin: 0 auto;
    }

    .button-thanks {
        font-size: 10px;
    }

    .footer-left,
    .footer-right {
        margin: 0.5rem 0;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-content {
        flex-direction: column;
        margin: 1rem auto;
        padding: 0;
        min-height: auto;
    }

    .rating {
        margin-left: 0;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .review {
        font-size: 15px;
    }

    .sidebar {
        width: 100%;
        margin-top: 2rem;
    }

    .site-footer {
        flex-direction: column;
        border-radius: 0;
    }

    .site-header {
        border-radius: 0;
    }

    .text-stripe,
    .review-score {
        font-size: 12px;
    }

    .review-translation-status {
        padding: 12px;
        border-radius: 10px;
    }

    .review-translation-status__row {
        align-items: flex-start;
        flex-direction: column;
    }

    .review-translation-status__list {
        gap: 6px;
    }

    .review-translation-status__pill {
        max-width: 100%;
    }
}

@media (max-width: 1203px) {
    @supports (-moz-appearance: none) {
        .review {
            font-size: 19px;
        }
    }
}