.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #e2ff03;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.review-card {
    background: radial-gradient( ellipse at center, rgba(255, 60, 60, 0.12), transparent 65% ), linear-gradient( 180deg, #0e0000, #220000, #0b0000);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 250px;
    max-width: 280px;
    min-width: 240px;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(114, 9, 183, 0.4);
    border-color: var(--secondary-color);
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(247, 37, 133, 0.5);
}

.user-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d1d1;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-meta {
    margin-top: auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    display: block;
}

.rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.footer-copy {
    text-align: center;
    margin-top: 50px;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    .container {
        padding: 20px;
    }
}