.upcoming-page {
    padding: 80px 8%;
    max-width: 1400px;
    margin: auto;
}

.upcoming-hero {
    text-align: center;
    margin-bottom: 70px;
}

.hero-lead {
    margin-top: 10px;
    color: #64748b;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.game-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all .25s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.game-cover {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.game-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-badge {
    background: #111827;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
}

.release-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.game-info {
    padding: 18px;
}

.game-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.game-dev {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.platforms {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.platforms span {
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.countdown {
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 14px;
}

.wishlist-btn {
    width: 100%;
    background: #0f172a;
    color: white;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all .2s;
}

.wishlist-btn:hover {
    background: #2563eb;
}