

/* MAIN LAYOUT */
.launcher-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* HERO PANEL */
.hero-panel {
    background: var(--panel);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(0,246,255,0.25);
    box-shadow: 0 0 20px rgba(0,246,255,0.15);
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    margin-top: 10px;
    font-size: 1rem;
    color: var(--text-muted);
}

/* GAME GRID */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

/* GAME CARD */
.game-card {
    background: linear-gradient(145deg, #050712, #0b1020);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,246,255,0.18);
    padding: 20px;
    box-shadow: 0 0 14px rgba(0,246,255,0.12);
    transition: 160ms ease-out;
    text-decoration: none;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 22px rgba(0,246,255,0.25);
}

/* GAME IMAGE */
.game-image {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    background: #000;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
}

/* GAME TITLE */
.game-title {
    font-size: 1.3rem;
    font-weight: 600;
}

/* GAME DESC */
.game-desc {
    margin-top: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}