.similar-games-section {
    margin: 24px 0 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid #cbd6e3;
    border-radius: 16px;
}

.similar-games-section .section-header {
    margin-bottom: 20px;
}

.similar-games-section .section-title i {
    color: #8b5cf6;
}

.similar-games-grid {
    margin-bottom: 0;
}

.similar-games-section .game-stats-overlay {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.similar-games-section .game-hover-preview {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}

.similar-games-section .game-hover-preview.is-playing {
    opacity: 1;
}

.similar-games-section .game-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: calc(100% - 20px);
    padding: 4px 8px;
    overflow: hidden;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.similar-games-section .game-category-badge i {
    color: #10b981;
    font-size: 10px;
}

.similar-games-section .game-title-badge {
    display: inline-flex;
    flex: 0 1 auto;
    align-items: center;
    width: max-content;
    min-width: 0;
    max-width: 100%;
    padding: 4px 8px;
    overflow: hidden;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.similar-games-section .game-stat {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    color: #fff;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.similar-games-section .game-stat .fa-users {
    color: #60a5fa;
}

.similar-games-section .game-stat .fa-star {
    color: #ffc107;
}

@media (max-width: 768px) {
    .similar-games-section {
        padding: 18px;
    }

    .similar-games-section .game-stats-overlay {
        right: 6px;
        bottom: 6px;
        left: 6px;
        gap: 4px;
    }

    .similar-games-section .game-category-badge {
        top: 6px;
        left: 6px;
        max-width: calc(100% - 12px);
        padding: 2px 6px;
        font-size: 9px;
    }

    .similar-games-section .game-title-badge,
    .similar-games-section .game-stat {
        padding: 2px 6px;
        font-size: 9px;
    }
}

.game-detail-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 20px;
}

.game-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}

.game-tag-link {
    padding: 5px 10px;
    border-radius: 20px;
    background: #eef2f7;
    border: 1px solid #d5dde8;
    color: #334155;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.game-tag-link:hover {
    color: #e01a3f;
    border-color: #e01a3f;
    background: #ffffff;
}

.game-detail-header {
    background: linear-gradient(135deg, #1a2535 0%, #283852 100%);
    padding: 32px;
    color: white;
}

.game-detail-header h1 {
    font-size: 32px;
    margin-bottom: 0;
}

.game-preview-container {
    position: relative;
    width: 100%;
    background: #0a0a0a;
    cursor: pointer;
}

.game-preview-container[hidden],
.game-player-container[hidden],
.fullscreen-overlay-btn[hidden] {
    display: none !important;
}

.game-preview {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2a3f 0%, #2a3a4f 100%);
}

.game-preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-preview-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.game-preview-video.is-playing {
    opacity: 1;
}

.game-preview-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2a3f 0%, #2a3a4f 100%);
    color: white;
    text-align: center;
    z-index: 1;
}

.game-preview-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
    color: #e01a3f;
}

.game-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.game-preview-overlay.has-video {
    background: rgba(0, 0, 0, 0.42);
}

.play-button {
    background: linear-gradient(135deg, #e01a3f, #c41535);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 3;
    text-decoration: none;
    min-width: 200px;
}

.play-button:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(224, 26, 63, 0.4);
}

.play-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.play-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #4a6080;
}

.play-button.secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
}

.game-preview-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 3;
}

.preview-category,
.preview-plays,
.preview-rating {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

@keyframes overlayFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.game-preview-overlay .blocked-content {
    animation: overlayFadeIn 0.3s ease;
}

.game-player-container {
    position: relative;
    width: 100%;
    background: #0a0a0a;
}

.game-player-container.is-hidden {
    display: none !important;
}

.game-player {
    position: relative;
    width: min(100%, calc(78vh * var(--game-width, 16) / var(--game-height, 9)));
    aspect-ratio: var(--game-width, 16) / var(--game-height, 9);
    height: auto;
    margin: 0 auto;
    background: #000;
}

.game-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Полноэкранный режим */
.game-player:fullscreen {
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto;
}

.game-player:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto;
}

.game-player:fullscreen iframe,
.game-player:-webkit-full-screen iframe {
    width: 100%;
    height: 100%;
}

.fullscreen-overlay-btn {
    position: absolute;
    top: -50px;
    right: 0;
    z-index: 10;
    background: transparent;
    backdrop-filter: none;
    border: none;
    width: auto;
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-size: 18px;
    pointer-events: none;
}

.fullscreen-overlay-btn i {
    pointer-events: auto;
}

.fullscreen-overlay-btn span {
    color: white;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    pointer-events: auto;
}

.fullscreen-overlay-btn:hover {
    background: transparent;
}

.exit-fullscreen-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2147483647;
    background: transparent;
    backdrop-filter: none;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    color: white;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    pointer-events: none;
}

.exit-fullscreen-btn i {
    pointer-events: auto;
}

.exit-fullscreen-btn:hover {
    background: transparent;
}

.game-player:fullscreen .exit-fullscreen-btn,
.game-player:-webkit-full-screen .exit-fullscreen-btn {
    display: flex;
}

/* Портретные игры: плеер вертикальный, по центру, с тёмными полями по бокам */
.game-player-portrait {
    width: auto;
    height: min(78vh, calc(var(--game-height, 9) * 1px), calc((100vw - 68px) * var(--game-height, 9) / var(--game-width, 16)));
    max-width: 100%;
}

/* Мобильные пропорции задаются внешним JS через CSS-переменные. */
@media (max-width: 768px) {
    .game-detail-card.has-mobile-player-size .game-player {
        aspect-ratio: var(--game-mobile-width) / var(--game-mobile-height) !important;
        width: min(100%, calc(80vh * var(--game-mobile-ratio))) !important;
        height: auto !important;
        margin: 0 auto !important;
    }
}

/* Платный доступ и статус игры */
.game-buy-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.game-buy-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd54f;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

.game-buy-button {
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.game-status-banner {
    background: rgba(220, 53, 69, .85);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 12px;
}

.game-buy-message {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.game-buy-message.success { background: rgba(40, 167, 69, .85); }

.game-buy-message.error { background: rgba(220, 53, 69, .85); }

/* В полноэкранном режиме игнорируем портретные inline-размеры */
.game-player:fullscreen {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
}

.game-player:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
}

.game-detail-content {
    padding: 32px 32px 20px;
    /* Переопределяем двухколоночный грид из main_styles: правая колонка пустовала,
       а описание было зажато в узкую левую (1fr из 1fr 2fr). */
    display: block;
}

.game-detail-description h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1a2a3f;
}

.game-detail-description p {
    color: #4a5a70;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Обведённые панели для текстовых блоков */
.game-text-block {
    background: linear-gradient(165deg, #f8fafd 0%, #eef3f9 100%);
    border: 1px solid #d7e0ec;
    border-left: 4px solid #283852;
    border-radius: 0;
    padding: 22px 26px;
    box-shadow: 0 2px 8px rgba(26, 42, 63, 0.05);
}

.game-text-block + .game-text-block {
    margin-top: 20px;
}

.game-text-content p {
    color: #4a5a70;
    line-height: 1.7;
    margin: 0 0 12px;
}

.game-text-content p:last-child {
    margin-bottom: 0;
}

.game-text-content h4 {
    color: #1a2a3f;
    font-size: 15px;
    margin: 18px 0 10px;
}

.game-text-content h4:first-child {
    margin-top: 0;
}

.game-text-content ul {
    margin: 0 0 14px;
    padding-left: 0;
    list-style: none;
}

.game-text-content ul:last-child {
    margin-bottom: 0;
}

.game-text-content li {
    color: #4a5a70;
    line-height: 1.6;
    padding: 4px 0;
}

/* ============================================ */
/* ОТЗЫВЫ */
/* ============================================ */

.reviews-section {
    background: white;
    border-radius: 0 0 24px 24px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-top: 0;
    border-top: 1px solid #e2e8f0;
}

.reviews-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.playtime-card {
    background: linear-gradient(135deg, #1a2535 0%, #283852 100%);
    border: 1px solid #3d5270;
    border-radius: 0;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.playtime-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.playtime-header i {
    font-size: 20px;
    color: #e8eef5;
}

.playtime-header span {
    font-weight: 600;
    color: #e8eef5;
    font-size: 14px;
}

.playtime-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.playtime-bar-track {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    height: 8px;
    overflow: hidden;
}

.playtime-bar-fill {
    background: linear-gradient(90deg, #f59e0b, #e01a3f);
    height: 100%;
    border-radius: 99px;
    transition: width 0.6s ease;
}

.playtime-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9aafc5;
    font-weight: 500;
}

.review-form-card {
    background: #f1f5f9;
    border-radius: 0;
    padding: 24px;
    margin-bottom: 28px;
    border: 1px solid #e2e8f0;
}

.review-form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.review-form-header i {
    color: #f59e0b;
    font-size: 18px;
}

.rating-group {
    margin-bottom: 18px;
}

.rating-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.star-rating {
    display: flex;
    gap: 6px;
}

.star-rating i {
    font-size: 36px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i.far {
    color: #cbd5e1;
}

.star-rating i.fas {
    color: #f59e0b;
}

.star-rating i:hover {
    transform: scale(1.15);
}

.comment-group {
    margin-bottom: 16px;
}

.review-comment-fields {
    margin-top: 18px;
}

.comment-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.comment-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    background: white;
    transition: all 0.2s;
}

.comment-group textarea:focus {
    outline: none;
    border-color: #e01a3f;
    box-shadow: 0 0 0 4px rgba(224, 26, 63, 0.08);
}

.comment-group textarea::placeholder {
    color: #94a3b8;
}

.char-counter {
    text-align: right;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
}

.btn-submit-review {
    padding: 12px 32px;
    background: linear-gradient(135deg, #1a2535 0%, #283852 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 37, 53, 0.3);
}

.btn-submit-review:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.error-text {
    color: #e01a3f;
    font-size: 12px;
    margin-top: 6px;
}

.review-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    min-width: 0;
    max-width: 100%;
}

.review-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.review-author-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-block .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f5f9;
}

.review-author-block .avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 18px;
}

.review-author-name {
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
}

.review-author-name:hover {
    color: #e01a3f;
}

.review-stars-small {
    display: flex;
    gap: 2px;
}

.review-stars-small i {
    font-size: 14px;
}

.review-stars-small .star-filled {
    color: #f59e0b;
}

.review-stars-small .star-empty {
    color: #e2e8f0;
}

.review-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-date {
    font-size: 12px;
    color: #94a3b8;
}

.btn-delete-review {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
}

.btn-delete-review:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.review-delete-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.review-delete-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.review-delete-dialog {
    width: min(100%, 420px);
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.2s ease;
}

.review-delete-modal.is-open .review-delete-dialog {
    transform: translateY(0) scale(1);
}

.review-delete-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #dc2626;
    background: #fee2e2;
    font-size: 18px;
}

.review-delete-dialog h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 20px;
}

.review-delete-dialog p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.review-delete-error {
    display: none;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #b91c1c;
    background: #fef2f2;
    font-size: 13px;
}

.review-delete-error.is-visible {
    display: block;
}

.review-delete-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}

.review-delete-actions button {
    min-height: 40px;
    padding: 9px 16px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.review-delete-cancel {
    color: #334155;
    background: #f1f5f9;
}

.review-delete-cancel:hover {
    background: #e2e8f0;
}

.review-delete-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    background: #dc2626;
}

.review-delete-confirm:hover {
    background: #b91c1c;
}

.review-delete-actions button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.review-comment-text {
    color: #334155;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    padding-left: 52px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: pre-wrap;
}

.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.no-reviews i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #cbd5e1;
}

.no-reviews p {
    font-size: 14px;
    margin: 4px 0;
}

.no-reviews .hint {
    font-size: 12px;
    color: #b0c0d0;
}

/* ============================================ */
/* АДАПТАВНОСТЬ */
/* ============================================ */

@media (max-width: 768px) {
    .game-detail-header { padding: 20px; }
    .game-detail-header h1 { font-size: 24px; }
    .play-button { padding: 12px 32px; font-size: 16px; min-width: 160px; }
    .game-preview-info { bottom: 12px; left: 12px; right: 12px; gap: 8px; }
    .preview-category, .preview-plays, .preview-rating { font-size: 10px; padding: 4px 8px; }
    .game-player { aspect-ratio: 16 / 9; }
    /* На узких экранах текст кнопки не должен пересекаться с заголовком плеера. */
    .fullscreen-overlay-btn span { display: none; }
    .fullscreen-overlay-btn { min-width: 44px; padding: 0; }
    .game-detail-content { padding: 20px 20px 16px; }
    
    .reviews-section {
        padding: 20px;
        border-radius: 16px;
        margin-top: 0;
    }

    .playtime-card {
        padding: 16px;
    }

    .review-form-card {
        padding: 16px;
    }

    .star-rating i {
        font-size: 28px;
    }

    .review-card {
        padding: 16px;
    }

    .review-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-right {
        width: 100%;
        justify-content: space-between;
    }

    .review-comment-text {
        padding-left: 0;
        margin-top: 8px;
    }

    .btn-submit-review {
        width: 100%;
        justify-content: center;
    }

    .game-preview-overlay .blocked-content {
        padding: 20px !important;
    }
    
    .game-preview-overlay .blocked-content h2 {
        font-size: 20px !important;
    }
    
    .game-preview-overlay .blocked-content .play-button {
        font-size: 14px !important;
        padding: 10px 16px !important;
        min-width: 140px !important;
    }
}

@media (max-width: 480px) {
    .game-detail-header h1 { font-size: 20px; }
    .play-button { padding: 10px 24px; font-size: 14px; min-width: 140px; }
    .game-player { aspect-ratio: 16 / 9; }
    .game-detail-content { padding: 16px; }
    
    .reviews-section {
        padding: 16px;
        border-radius: 12px;
    }

    .reviews-badge {
        font-size: 10px;
        padding: 2px 10px;
    }

    .star-rating i {
        font-size: 24px;
    }

    .review-delete-dialog {
        padding: 20px;
    }

    .review-delete-actions {
        flex-direction: column-reverse;
    }

    .review-delete-actions button {
        width: 100%;
    }

    .game-preview-overlay .blocked-content {
        padding: 16px !important;
    }
    
    .game-preview-overlay .blocked-content h2 {
        font-size: 18px !important;
    }
    
    .game-preview-overlay .blocked-content .play-button {
        font-size: 13px !important;
        padding: 10px 14px !important;
        min-width: 120px !important;
    }
}
