/* hub page (index.php) 전용 스타일 */
.hub-page {
    font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', sans-serif;
    background: #f4f6f9;
    min-height: 100vh;
    margin: 0;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.hub-page *, .hub-page *::before, .hub-page *::after {
    box-sizing: border-box;
}
.hub-wrap {
    max-width: 720px;
    width: 100%;
    padding-top: 40px;
}
.hub-header {
    margin-bottom: 32px;
}
.hub-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.hub-logo-icon {
    width: 40px;
    height: 40px;
    background: #1a1a2e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.hub-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}
.hub-logo-sub {
    font-size: 12px;
    color: #888;
    margin-top: 1px;
}
.hub-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
}
.hub-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.hub-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.hub-game-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 28px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hub-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.hub-game-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.hub-game-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}
.hub-game-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}
.hub-footer {
    border-top: 1px solid #e5e7ec;
    padding-top: 20px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
}
.hub-footer a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
}
.hub-footer a:hover {
    text-decoration: underline;
}
@media (max-width: 480px) {
    .hub-wrap { padding-top: 24px; }
    .hub-title { font-size: 22px; }
}
