.testimonials-section {
    padding-top: 50px;
   background: radial-gradient(
        ellipse at 50% 15%,
        rgba(75, 35, 150, 0.2) 0%,   /* increased from 0.25 → 0.6 */
        rgba(30, 15, 60, 0.2) 40%,   /* increased from 0.15 → 0.4 */
        #000000 70%
    );
}

.testimonials-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-container {
    position: relative;
    height: 700px;
    overflow: hidden;
    mask: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.testimonials-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), transparent);
    z-index: 10;
    pointer-events: none;
}

.testimonials-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    z-index: 10;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    height: 100%;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.testimonials-track {
    display: flex;
    flex-direction: column;
    gap: 30px;
    will-change: transform;
}

.testimonials-review-card {
    /* background: rgba(30, 41, 59, 0.85); */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(20px, 4vw, 30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
    flex-shrink: 0;
}

.testimonials-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonials-review-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(165, 59, 246, 0.6);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(165, 59, 246, 0.1);
}

.testimonials-review-card:hover::before {
    opacity: 1;
}

.testimonials-user-profile {
    display: flex;
    align-items: center;
    margin-bottom: clamp(16px, 3vw, 24px);
    gap: 15px;
}

.testimonials-profile-avatar {
    width: clamp(44px, 8vw, 56px);
    height: clamp(44px, 8vw, 56px);
    border-radius: 50%;
    background: linear-gradient(135deg, #8400d8, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.3rem);
    position: relative;
    flex-shrink: 0;
}

.testimonials-profile-avatar::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8400d8, #8b5cf6, #ec4899);
    z-index: -1;
    animation: testimonials-avatar-rotate 4s linear infinite;
}

@keyframes testimonials-avatar-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.testimonials-profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--your-avatar-bg-color);
    color: var(--your-avatar-text-color);
    border-radius: 50%;
    font-weight: bold;
}

.testimonials-user-info {
    flex: 1;
    min-width: 0;
}

.testimonials-user-info h3 {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-weight: 600;
    margin-bottom: 4px;
    color: #f1f5f9;
}

.testimonials-user-handle {
    color: #8400d8;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.testimonials-turf-town-link {
    color: #8400d8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.testimonials-turf-town-link:hover {
    color: #8400d8;
}

.testimonials-review-content {
    color: #e2e8f0;
    line-height: 1.65;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.testimonials-text-highlight {
    color: #8400d8;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        height: 500px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Pause on hover */
.testimonials-container:hover .testimonials-track {
    animation-play-state: paused !important;
}