/* 패밀리 게임 런처 — 카드 메인 메뉴 스타일 (TV 화면, 큰 글씨) */

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

html, body
{
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    background: linear-gradient(160deg, #2a3358 0%, #161a2e 100%);
    color: #ffffff;
}

#launcher
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3vh 4vw;
}

/* ===== 헤더 ===== */
.lc_header
{
    text-align: center;
    margin-bottom: 2.6vh;
}

.lc_title
{
    font-size: 64px;
    font-weight: 900;
    color: #ffd84a;
    text-shadow: 0 5px 0 #00000050;
}

.lc_subtitle
{
    font-size: 32px;
    font-weight: 700;
    color: #bcd0ff;
    margin-top: 1vh;
}

/* ===== 카드 그리드 ===== */
.lc_cards
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2vh 2.6vw;
    width: 100%;
    max-width: 1040px;
}

.lc_card
{
    position: relative;
    border-radius: 24px;
    padding: 2.8vh 2.6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    background: rgba(255, 255, 255, 0.07);
    border: 5px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    overflow: hidden;
}

/* 플레이 가능한 카드 */
.lc_card.ready
{
    box-shadow: 0 9px 0 #00000040;
}

/* 준비중 카드 — 어둡게 */
.lc_card.soon
{
    opacity: 0.5;
}

/* 포커스(선택) 카드 — 노란 테두리 + 확대 */
.lc_card.focused
{
    border-color: #ffd84a;
    transform: scale(1.05);
    box-shadow: 0 0 0 6px #ffd84a40, 0 12px 0 #00000050;
}

.lc_card_icon
{
    font-size: 86px;
    line-height: 1;
}

.lc_card_name
{
    font-size: 40px;
    font-weight: 900;
}

.lc_card_desc
{
    font-size: 27px;
    font-weight: 600;
    color: #d8e0f4;
    text-align: center;
}

/* 준비중 배지 */
.lc_badge
{
    position: absolute;
    top: 18px;
    right: -54px;
    width: 200px;
    transform: rotate(38deg);
    background: #e8403a;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    padding: 8px 0;
}

/* ===== 푸터 ===== */
.lc_foot
{
    margin-top: 2.6vh;
    font-size: 28px;
    font-weight: 700;
    color: #8fa0c0;
}
