/* ========== GAMES CAROUSEL ========== */
@keyframes gamesScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.games-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: gamesScroll 40s linear infinite;
}

.game-item {
    flex-shrink: 0;
    width: 280px;
    background: #181818 url('../images/wavy-background.png') repeat;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 24, 0.55);
    border-radius: 16px;
    z-index: 0;
}

.game-item > * {
    position: relative;
    z-index: 1;
}


.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 12px;
}

.game-title {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.game-features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    font-size: 0.8rem;
    color: #888;
}

.game-features li {
    padding: 2px 0;
}

/* ========== TESTIMONIALS CAROUSEL ========== */
@keyframes testimonialScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testimonialScroll 30s linear infinite;
}

.testimonial-item {
    flex-shrink: 0;
    width: 280px;
    background: #181818 url('../images/wavy-background.png') repeat;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 20px;
    margin: 0;
    position: relative;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 24, 0.55);
    border-radius: 16px;
    z-index: 0;
}

.testimonial-item > * {
    position: relative;
    z-index: 1;
}


.t-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #444;
    flex-shrink: 0;
}

.t-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-name {
    font-weight: 500;
    color: #fff;
    font-size: 0.9rem;
    display: block;
}

.t-handle {
    color: #60a5fa;
    font-size: 0.75rem;
}

.t-quote {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
