.game-section {
    margin-bottom: 48px;
}

.game-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.game-section .section-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #e0e0ea;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    font-size: 26px;
    padding: 6px;
}

.section-icon.new { color: #00cec9; background: rgba(0,206,201,0.12); }
.section-icon.sport { color: #74b9ff; background: rgba(116,185,255,0.12); }
.section-icon.arcade { color: #fd79a8; background: rgba(253,121,168,0.12); }

.see-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6c5ce7;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s, gap 0.2s;
}

.see-more:hover {
    color: #a29bfe;
    gap: 8px;
}

.see-more .material-icons-round {
    font-size: 18px;
}

.slider-container {
    position: relative;
}

.slider-track {
    display: flex;
    gap: 16px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.slider-btn {
    position: absolute;
    top: 0;
    z-index: 10;
    height: calc(100% - 42px);
    width: 48px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s;
    opacity: 0;
}

.slider-container:hover .slider-btn {
    opacity: 1;
}

.slider-btn-left {
    left: 0;
    background: linear-gradient(90deg, rgba(15,15,19,0.9) 20%, transparent);
}

.slider-btn-right {
    right: 0;
    background: linear-gradient(270deg, rgba(15,15,19,0.9) 20%, transparent);
}

.slider-btn .material-icons-round {
    font-size: 30px;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
    transition: transform 0.2s;
}

.slider-btn:hover .material-icons-round {
    transform: scale(1.2);
}

.slider-scrollbar {
    display: none !important;
}

.new-slider-track {
    gap: 20px;
}

.new-game-card {
    flex: 0 0 260px;
    position: relative;
    background: linear-gradient(160deg, #1c1c30, #252540);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-game-card a {
    display: block;
    color: inherit;
}

.new-game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #00cec9, #6c5ce7, #fd79a8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.new-game-card:hover::before {
    opacity: 1;
}

.new-game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2), 0 0 80px rgba(0, 206, 201, 0.06);
}

.new-game-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.new-game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.new-game-card:hover .new-game-card-image img {
    transform: scale(1.12);
    filter: brightness(0.6);
}

.new-game-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.new-game-card:hover .new-game-overlay {
    opacity: 1;
}

.new-game-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00cec9, #00b894);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(0, 206, 201, 0.5);
    transform: scale(0.7);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.new-game-card:hover .new-game-play {
    transform: scale(1);
}

.new-game-play .material-icons-round {
    font-size: 30px;
    color: #fff;
}

.new-game-card .game-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
}

.badge-icon {
    font-size: 14px !important;
}

.badge-new {
    background: linear-gradient(135deg, #00cec9, #00b894);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 206, 201, 0.4);
}

.new-game-card-info {
    padding: 16px 18px;
}

.new-game-card-info h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
}

.new-game-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.new-game-category .material-icons-round {
    font-size: 14px;
}

.cat-color-arcade { color: #e84393; background: rgba(232,67,147,0.1); }
.cat-color-auto { color: #ff6b6b; background: rgba(255,107,107,0.1); }
.cat-color-meisjes { color: #fd79a8; background: rgba(253,121,168,0.1); }
.cat-color-schiet { color: #ff7675; background: rgba(255,118,117,0.1); }
.cat-color-strategie { color: #dfe6e9; background: rgba(223,230,233,0.1); }
.cat-color-sport { color: #74b9ff; background: rgba(116,185,255,0.1); }
.cat-color-actie { color: #fdcb6e; background: rgba(253,203,110,0.1); }
.cat-color-avontuur { color: #00cec9; background: rgba(0,206,201,0.1); }
.cat-color-puzzel { color: #00b894; background: rgba(0,184,148,0.1); }
.cat-color-defensie { color: #74b9ff; background: rgba(116,185,255,0.1); }
.cat-color-denk { color: #a29bfe; background: rgba(162,155,254,0.1); }
.cat-color-bord { color: #ffeaa7; background: rgba(255,234,167,0.1); }
.cat-color-multi { color: #55efc4; background: rgba(85,239,196,0.1); }
.cat-color-oorlog { color: #e17055; background: rgba(225,112,85,0.1); }
.cat-color-aankleed { color: #fd79a8; background: rgba(253,121,168,0.1); }

.game-card {
    flex: 0 0 calc((100% - 64px) / 5);
    min-width: 150px;
    background: none;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.3s;
    cursor: pointer;
    position: relative;
}

.game-card a {
    display: block;
    color: inherit;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: transparent;
}

.game-card.cat-sport:hover,
.game-card.cat-arcade:hover,
.game-card.cat-strategy:hover,
.game-card.cat-auto:hover,
.game-card.cat-actie:hover,
.game-card.cat-avontuur:hover,
.game-card.cat-schiet:hover,
.game-card.cat-puzzel:hover,
.game-card.cat-meisjes:hover,
.game-card.cat-multi:hover,
.game-card.cat-oorlog:hover,
.game-card.cat-defensie:hover,
.game-card.cat-denk:hover,
.game-card.cat-bord:hover,
.game-card.cat-aankleed:hover {
    border-color: transparent;
    box-shadow: none;
}

.game-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
    border-radius: 0;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    filter: none;
}

.game-card:hover .game-card-image img {
    transform: scale(1.05);
    filter: none;
}

.card-overlay {
    display: none;
}

.game-card-info {
    padding: 10px 0 0;
    background: none;
    border-radius: 0;
}

.game-card-info h3 {
    font-size: 13px;
    font-weight: 700;
    color: #b0b0c0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.game-card:hover .game-card-info h3 {
    color: #fff;
}

.game-category {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
    background: none;
}

.cat-icon {
    font-size: 13px !important;
}

.cat-tag-sport { color: #74b9ff; }
.cat-tag-arcade { color: #e84393; }
.cat-tag-strategy { color: #dfe6e9; }
.cat-tag-auto { color: #ff6b6b; }
.cat-tag-actie { color: #fdcb6e; }
.cat-tag-avontuur { color: #00cec9; }
.cat-tag-schiet { color: #ff7675; }
.cat-tag-puzzel { color: #00b894; }
.cat-tag-meisjes { color: #fd79a8; }
.cat-tag-multi { color: #55efc4; }
.cat-tag-oorlog { color: #e17055; }
.cat-tag-defensie { color: #74b9ff; }
.cat-tag-denk { color: #a29bfe; }
.cat-tag-bord { color: #ffeaa7; }
.cat-tag-aankleed { color: #fd79a8; }

.cat-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 52px;
}

.cat-block {
    background: #13131d;
    border: 1px solid #1c1c2e;
    padding: 20px;
}

.cat-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #1c1c2e;
}

.cat-block-head h2 {
    font-size: 18px;
    font-weight: 800;
    color: #e0e0ea;
}

.cat-block-head a {
    font-size: 12px;
    font-weight: 600;
    color: #6c5ce7;
    transition: color 0.2s;
}

.cat-block-head a:hover {
    color: #a29bfe;
}

.cat-block-list {
    display: flex;
    flex-direction: column;
}

.cat-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    border-bottom: 1px solid #1a1a28;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
}

.cat-row:last-child {
    border-bottom: none;
}

.cat-row:hover {
    background: #1a1a2e;
}

.cat-row-num {
    width: 24px;
    font-size: 16px;
    font-weight: 800;
    color: #2a2a40;
    text-align: center;
    flex-shrink: 0;
    transition: color 0.2s;
}

.cat-row:hover .cat-row-num {
    color: #6c5ce7;
}

.cat-row img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.cat-row:hover img {
    transform: scale(1.08);
}

.cat-row-info {
    flex: 1;
    min-width: 0;
}

.cat-row-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #b0b0c0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    transition: color 0.2s;
}

.cat-row:hover .cat-row-info h3 {
    color: #fff;
}

.cat-row-cat {
    font-size: 11px;
    font-weight: 600;
    color: #6c5ce7;
}

.cat-row-play {
    font-size: 30px;
    color: #222;
    flex-shrink: 0;
    transition: color 0.25s, transform 0.25s;
}

.cat-row:hover .cat-row-play {
    color: #6c5ce7;
    transform: scale(1.15);
}

@media (min-width: 1500px) {
    .game-card { flex: 0 0 calc((100% - 80px) / 6); }
    .new-game-card { flex: 0 0 280px; }
}

@media (max-width: 1100px) {
    .game-card { flex: 0 0 calc((100% - 48px) / 4); }
}

@media (max-width: 1024px) {
    .game-card { flex: 0 0 calc((100% - 48px) / 4); }
    .new-game-card { flex: 0 0 230px; }
    .slider-btn { opacity: 1; }
}

@media (max-width: 900px) {
    .cat-duo { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 800px) {
    .game-card { flex: 0 0 calc((100% - 32px) / 3); }
    .slider-btn { opacity: 1; width: 36px; }
    .slider-btn .material-icons-round { font-size: 26px; }
}

@media (max-width: 640px) {
    .new-game-card { flex: 0 0 200px; }
    .new-game-card-info { padding: 12px 14px; }
    .new-game-card-info h3 { font-size: 14px; }
    .slider-btn { width: 30px; opacity: 1; }
    .slider-btn .material-icons-round { font-size: 22px; }
}

@media (max-width: 600px) {
    .cat-block { padding: 14px; }
    .cat-block-head h2 { font-size: 16px; }
    .cat-row { gap: 10px; padding: 10px 4px; }
    .cat-row img { width: 44px; height: 44px; }
    .cat-row-info h3 { font-size: 13px; }
    .cat-row-num { font-size: 14px; width: 20px; }
    .cat-row-play { font-size: 26px; }
}

@media (max-width: 550px) {
    .game-card { flex: 0 0 calc((100% - 16px) / 2); min-width: 120px; }
    .game-card-info h3 { font-size: 12px; }
    .game-category { font-size: 10px; }
}

@media (max-width: 400px) {
    .cat-row img { width: 38px; height: 38px; }
    .cat-row-info h3 { font-size: 12px; }
    .cat-row-cat { font-size: 10px; }
    .cat-row-num { display: none; }
}