/* ===== GAME SLIDER ===== */
.game-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Thumbnail strip */
.gs-thumbs {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 12px;
    padding: 20px 24px 0;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: var(--max-width);
    margin: 0 auto;
}
.gs-thumbs::-webkit-scrollbar { display: none; }
.gs-thumbs { cursor: grab; }
.gs-thumb {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 16px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: transparent;
    padding: 3px;
}
.gs-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    display: block;
}
.gs-thumb.active {
    background: linear-gradient(135deg, #0070d8 0%, #6d28d9 50%, #ec4899 100%);
    box-shadow: 0 0 20px rgba(0,112,216,0.4), 0 0 40px rgba(109,40,217,0.25);
}
.gs-thumb::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 13px;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
    pointer-events: none;
}
.gs-thumb.active::after {
    background: transparent;
}

/* Main display area */
.gs-display {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Background slide */
.gs-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.gs-bg.active { opacity: 1; }
.gs-bg img, .gs-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlays */
.gs-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    pointer-events: none;
}
.gs-display::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Info overlay */
.gs-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 5;
    padding: 0 24px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.gs-info.active {
    opacity: 1;
    transform: translateY(0);
}
.gs-info h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.gs-info .gs-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gs-info .gs-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.gs-price-old {
    font-size: 18px;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
}
.gs-price-discount {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}
.gs-price-current {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}
.gs-price-currency {
    font-size: 22px;
    font-weight: 600;
}

/* Action buttons */
.gs-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.gs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
    text-decoration: none;
}
.gs-btn-buy {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: #fff;
}
.gs-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,99,0.4);
}
.gs-btn-more {
    background: rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(10px);
}
.gs-btn-more:hover { background: rgba(255,255,255,0.2); }
.gs-btn-fav {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.gs-btn-fav:hover { background: rgba(255,255,255,0.2); }

/* PS version badge */
.gs-ps-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.gs-ps-badge.ps5 { background: rgba(0,112,216,0.3); color: #60a5fa; }
.gs-ps-badge.ps4 { background: rgba(109,40,217,0.3); color: #a78bfa; }
.gs-ps-badge.ps4_ps5 { background: rgba(34,197,94,0.3); color: #86efac; }

/* Category tags */
.gs-cats {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.gs-cat {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

/* Navigation arrows */
.gs-nav {
    position: absolute;
    bottom: 50px;
    right: 24px;
    z-index: 10;
    display: flex;
    gap: 8px;
}
.gs-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gs-nav button:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 640px) {
    .gs-display { height: 400px; }
    .gs-thumb { width: 85px; height: 85px; border-radius: 10px; }
    .gs-thumbs { gap: 8px; padding: 12px 16px 0; }
    .gs-info { padding: 0 16px 24px; }
    .gs-nav { display: none; }
    .gs-price-current { font-size: 24px; }
}
