/* Value Blocks - Editorial supplementary content */
.value-blocks-section {
    background: #12122a;
    padding: 2.5rem 0;
    margin-top: 2rem;
    border-top: 3px solid #252550;
}
.value-blocks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.value-block {
    margin-bottom: 2rem;
}
.value-block:last-child {
    margin-bottom: 0;
}
.value-block-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e0e0f0;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #252550;
}
/* Our Verdict */
.verdict-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0c8;
    margin-bottom: 0.75rem;
    font-style: italic;
}
.verdict-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.rating-stars {
    color: #ffd700;
    font-size: 1.3rem;
    letter-spacing: 2px;
}
.rating-text {
    color: #8888aa;
    font-size: 0.9rem;
    font-weight: 600;
}
/* Similar Games */
.similar-games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.similar-games-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #252550;
    color: #c0c0d8;
    font-size: 0.95rem;
    line-height: 1.5;
}
.similar-games-list li:last-child {
    border-bottom: none;
}
.similar-games-list a {
    color: #6b9eff;
    font-weight: 600;
    text-decoration: none;
}
.similar-games-list a:hover {
    text-decoration: underline;
}
/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.comparison-table th {
    background: #1a1a3a;
    color: #e0e0f0;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
}
.comparison-table td {
    padding: 0.6rem 0.75rem;
    border: 1px solid #252550;
    color: #c0c0d8;
}
.comparison-table tbody tr:nth-child(odd) {
    background: #0f0f23;
}
.comparison-table tbody tr:nth-child(even) {
    background: #1a1a3a;
}
/* Common Mistakes */
.mistakes-list {
    list-style: none;
    counter-reset: mistake-counter;
    padding: 0;
    margin: 0;
}
.mistakes-list li {
    counter-increment: mistake-counter;
    padding: 0.75rem 0.75rem 0.75rem 2.75rem;
    border-left: 4px solid #ff6b6b;
    margin-bottom: 0.6rem;
    background: #1a1520;
    color: #c0c0d8;
    border-radius: 0 4px 4px 0;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}
.mistakes-list li::before {
    content: counter(mistake-counter);
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    font-weight: 700;
    color: #ff6b6b;
    font-size: 1.1rem;
}
.mistakes-list li strong {
    color: #ff9999;
}
/* Last Updated */
.last-updated-block {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #252550;
}
.last-updated {
    font-size: 0.8rem;
    color: #666688;
    text-align: right;
    margin: 0;
}
/* Responsive */
@media (max-width: 768px) {
    .value-blocks-container { padding: 0 1rem; }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table th, .comparison-table td { padding: 0.5rem; }
}
