/* ===========================================================
   Game Channel Page — Midnight Neon Theme
   =========================================================== */

.ducse-game-container {
    margin: 12px;
}

.ducse-game-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 22px;
    margin: 20px 0;
    background: #111827;
    border-radius: 14px;
    border: 1px solid #1e2d4a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
}
.ducse-game-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #e040fb, #8b5cf6);
}
.ducse-game-title p {
    font-size: 1.2rem;
    color: #f1f5f9;
    margin: 0;
    padding: 0 12px;
    font-weight: 800;
    letter-spacing: .3px;
    position: relative;
    z-index: 1;
}
.ducse-game-title img {
    width: 26px;
    height: 26px;
    display: block;
    z-index: 1;
    filter: brightness(0) saturate(100) invert(72%) sepia(78%) saturate(1200%) hue-rotate(155deg) brightness(95%) contrast(90%);
    opacity: .8;
}

.ducse-game-item-div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 10px 0;
}

.ducse-nav-game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}
.ducse-nav-game-info p {
    color: #64748b;
    margin: 0;
    font-size: .78rem;
}

.recommend {
    margin: 12px;
}

.recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
}

.ducse-recommend-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 8px 10px;
}

@media (max-width: 480px) {
    .ducse-game-item-div,
    .ducse-recommend-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
