.games-wrapper {
    padding: 20px;
}

.games-header h1 {
    margin-bottom: 5px;
}

.games-header p {
    color: #666;
    margin-bottom: 20px;
}

.games-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* GAME CARD */
.game-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 2px solid #333;
    border-radius: 14px;
    padding: 16px;
    transition: 0.2s;
}

.game-card:hover {
    transform: translateY(-2px);
}

/* LEFT ICON */
.game-left {
    width: 100px;
    flex-shrink: 0;
}

.game-icon {
    width: 100%;
}

/* MIDDLE CONTENT */
.game-middle {
    flex: 1;
}

.game-middle h2 {
    margin: 0 0 6px;
}

.game-middle p {
    margin: 0 0 10px;
    color: #444;
}

/* TAGS */
.game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.game-tags span {
    background: #e6ddff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}

/* RIGHT BUTTONS */
.game-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-primary {
    background: #e6ddff;
    color: black;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    background: #ddd;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* DISABLED CARD */
.game-card.disabled {
    opacity: 0.6;
}

.games-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* ===============================
   GAMES PAGE ALIGNMENT FIX
   Match Explore / Shops flow
=============================== */

.games-wrapper,
.games-container {
    max-width: 1050px !important;
    margin: 0 auto !important;
    padding: 40px 16px !important;
}

/* HEADER */
.games-header {
    text-align: center !important;
    margin-bottom: 24px !important;
}

.games-header h1 {
    margin: 0 0 6px !important;
    font-size: 32px !important;
    color: #5a2d82 !important;
    line-height: 1.1 !important;
}

.games-header p {
    margin: 0 !important;
    color: #5d6470 !important;
    font-size: 15px !important;
}

/* GAME LIST WIDTH */
.games-list,
.games-grid {
    max-width: 920px !important;
    margin: 0 auto !important;
}

/* GAME CARD CLEANUP */
.game-card {
    background: #ffffff !important;
    border: 1px solid #ddd6ff !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06) !important;
    padding: 16px !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

/* BUTTON */
.game-right .btn-primary {
    background: linear-gradient(90deg, #d492fd 0%, #91caff 100%) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
}

/* TAGS */
.game-tags span {
    background: #f3ecff !important;
    border: 1px solid #d8c8ff !important;
    border-radius: 999px !important;
    color: #5a2d82 !important;
    font-weight: 600 !important;
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px) {
    .games-wrapper,
    .games-container {
        padding: 40px 14px !important;
    }

    .game-card {
        padding: 14px !important;
    }
}