.wishlist-main {
    width: 100vw;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vw 0 2vw 0;
}
.wishlist-games-row {
    display: flex;
    gap: 3vw;
    width: 90vw;
    max-width: 1280px;
    justify-content: center;
}
.wishlist-game-panel {
    flex: 1 1 0;
    position: relative;
    min-width: 310px;
    max-width: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 19px;
    box-shadow: 0 8px 32px #000a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    overflow: hidden;
    min-height: 460px;
}
.wishlist-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,22,32,0.82) 60%, rgba(24,28,36,0.95) 100%);
    z-index: 1;
    pointer-events: none;
}
.wishlist-game-logo {
    position: relative;
    z-index: 2;
    max-width: 68%;
    max-height: 88px;
    margin: 2em auto 1.2em auto;
    display: block;
    filter: drop-shadow(0 6px 38px #000b);
}
.wishlist-panel-content {
    position: relative;
    z-index: 2;
    padding: 1em 1.3em 2em 1.3em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wishlist-game-title {
    font-family: var(--font-title, 'Bebas Neue', Impact, sans-serif);
    font-size: 2em;
    letter-spacing: 0.04em;
    margin-bottom: 0.19em;
    color: #fff;
    text-shadow: 0 2px 16px #111a;
}
.wishlist-game-desc {
    color: #d6f6ff;
    font-size: 1.16em;
    margin: 0.9em 0 1.7em 0;
    text-shadow: 0 1px 10px #0005;
    text-align: center;
}
.big-steam-btn {
    margin: 0 auto;
    font-size: 1.12em;
    padding: 1em 2.4em;
    border-radius: 13px;
    font-weight: 700;
    box-shadow: 0 4px 22px #00ffe74c;
    background: var(--primary, #00ffe7);
    color: #222;
    transition: background 0.17s, color 0.17s;
    text-decoration: none;
    display: inline-block;
}
.big-steam-btn:hover {
    background: var(--accent, #ff009d);
    color: #fff;
}
@media (max-width: 600px) {
    /* Shift cards down so they're not overlapped by logo/nav */
    .wishlist-main {
        padding: 80px 0 1.2em 0;    /* Top padding for logo/burger height */
        min-height: 95vh;
    }
    .wishlist-games-row {
        flex-direction: column;
        gap: 1.3em;
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        align-items: center;
    }
    .wishlist-game-panel {
        min-width: 0;
        max-width: 94vw;
        min-height: 210px;
        border-radius: 14px;
        padding: 0 0.3em;
        margin: 0.8em auto 1.2em auto;
        box-shadow: 0 2px 12px #0006;
        /* Add horizontal margin for some whitespace */
        width: 92vw;
    }
    .wishlist-panel-content {
        padding: 0.8em 0.3em 1.2em 0.3em;
    }
    .wishlist-game-logo {
        max-width: 90vw;
        max-height: 40px;
        margin: 1em auto 0.8em auto;
        object-fit: contain;
    }
    .wishlist-game-title {
        font-size: 1.28em;
        margin-bottom: 0.19em;
    }
    .wishlist-game-desc {
        font-size: 0.97em;
        margin: 0.6em 0 1em 0;
    }
    .big-steam-btn {
        font-size: 1em;
        padding: 0.8em 0.6em;
        border-radius: 10px;
        width: 96%;
        max-width: 360px;
        margin: 0.8em auto 0 auto;
        display: block;
    }
}
