.reviews-section {
    padding: 72px 0 100px;
    background: var(--bg-section);
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 99px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: .88rem;
    transition: all .2s ease;
}

.filter-btn:hover {
    border-color: var(--border);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--grad-accent);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 0;
}

.review-card {
    background: var(--grad-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 340px;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.review-card:hover {
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    transform: translateY(-3px);
}

.rc-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent-subtle);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 800;
    color: var(--accent-light);
    flex-shrink: 0;
}

.rc-meta {
    flex: 1;
    min-width: 0;
}

.rc-name {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rc-date {
    font-size: .75rem;
    color: var(--text-muted);
}

.rc-score {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gold-subtle);
    border: 1px solid rgba(245, 158, 11, .2);
    border-radius: 99px;
    padding: 4px 10px;
    font-size: .85rem;
    font-weight: 800;
    color: var(--gold-light);
    flex-shrink: 0;
}

.rc-casino-badge {
    align-self: flex-start;
}

/* Текст */
.rc-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rc-text {
    font-size: .86rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.rc-mood {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.rc-mood-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rc-mood.positive .rc-mood-dot {
    background: #22c55e;
}

.rc-mood.positive {
    color: #22c55e;
}

.rc-mood.negative .rc-mood-dot {
    background: #ef4444;
}

.rc-mood.negative {
    color: #ef4444;
}

.stats-section {
    padding: 80px 0;
    background: var(--bg-base);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--grad-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: border-color .25s, transform .25s;
}

.stat-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-light);
    display: block;
    margin-bottom: 6px;
}

.stat-val.gold {
    color: var(--gold-light);
}

.stat-label {
    font-size: .88rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}
