/* ===== NEW GAMES CAROUSEL ===== */
.ng-section {
    position: relative;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
    overflow: hidden;
}
.ng-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.ng-header {
    margin-bottom: 28px;
}
.ng-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}
.ng-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Track */
.ng-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    /* scroll-behavior controlled by JS */
    padding: 4px 0;
    cursor: grab;
}
.ng-track::-webkit-scrollbar { display: none; }
.ng-track.grabbing { cursor: grabbing; }

/* Card */
.ng-card {
    flex-shrink: 0;
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.ng-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.ng-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-secondary);
}
.ng-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.ng-card:hover .ng-card-img img { transform: scale(1.05); }

/* Badge */
.ng-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.95);
    color: #111;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.ng-badge svg { width: 14px; height: 14px; fill: #22c55e; }

/* Price */
.ng-card-footer {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ng-price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}
.ng-price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.ng-discount {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    background: #e91e63;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

/* View all button */
.ng-footer {
    margin-top: 28px;
}
.ng-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-family: inherit;
}
.ng-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,99,0.4);
}

@media (max-width: 640px) {
    .ng-section { padding: 32px 0; }
    .ng-inner { padding: 0 16px; }
    .ng-title { font-size: 24px; }
    .ng-card { width: 220px; }
}
