/* ===========================================================
   Game Channel Page — Elegant Rose Theme
   =========================================================== */

.kadin-game-container {
    margin: 10px;
}

.kadin-game-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    margin: 16px 0;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #f3e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
    position: relative;
    overflow: hidden;
}
.kadin-game-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #f59e0b, #14b8a6);
}
.kadin-game-title p {
    font-size: 1.15rem;
    color: #1e1b2e;
    margin: 0;
    padding: 0 10px;
    font-weight: 800;
    letter-spacing: .2px;
    position: relative;
    z-index: 1;
}
.kadin-game-title img {
    width: 24px;
    height: 24px;
    display: block;
    z-index: 1;
    filter: brightness(0) saturate(100) invert(34%) sepia(85%) saturate(1200%) hue-rotate(310deg) brightness(95%) contrast(90%);
    opacity: .75;
}

.kadin-game-item-div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 8px 0;
}

.kadin-nav-game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}
.kadin-nav-game-info p {
    color: #9ca3af;
    margin: 0;
    font-size: .76rem;
}

.recommend {
    margin: 10px;
}

.recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
}

.kadin-recommend-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 6px 8px;
}

@media (max-width: 480px) {
    .kadin-game-item-div,
    .kadin-recommend-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
