.toto80-reviews-section {
    margin: 40px 0;
}
.toto80-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}
.toto80-review-card {
    background: linear-gradient(145deg, #6b1421, #4a0d17);
    border: 1px solid #800020;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.toto80-review-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}
.toto80-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.toto80-review-name {
    font-weight: 700;
    color: #ffcc00;
    font-size: 16px;
}
.toto80-review-stars {
    color: #ffcc00;
    letter-spacing: 2px;
}
.toto80-review-text {
    color: #f1f1f1;
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0;
    font-style: italic;
}
.toto80-review-date {
    color: #c7a7a7;
    font-size: 12px;
    display: block;
    margin-top: 12px;
    text-align: right;
}
@media (max-width: 768px) {
    .toto80-reviews-grid {
        grid-template-columns: 1fr;
    }
}