/* ============================================================
   공통 게임 헤더 스타일 (Minimalist)
   ============================================================ */
#game-global-header {
    width: 100%;
    margin: 0;
    padding: 0;
}

.minimal-header-container {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Noto Sans KR', sans-serif;
}

.minimal-header {
    max-width: 1000px;
    margin: 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

/* 왼쪽: 로고 & 뒤로가기 */
.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    /* text-gray-600 */
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.back-link:hover {
    color: #111827;
    /* text-gray-900 */
}

.back-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* 중앙: 게임 타이틀 */
.game-title {
    font-family: 'Jua', 'Noto Sans KR', sans-serif;
    font-size: 1.25rem;
    color: #1f2937;
    /* text-gray-800 */
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* 우측: 유저 정보 등 여백 (현재는 비워둠) */
.header-right {
    min-width: 80px;
    /* 좌우 균형을 위해 padding 영역 정도 확보 */
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 600px) {
    .minimal-header {
        padding: 0 1rem;
    }

    .back-link span {
        display: none;
        /* 모바일에서는 아이콘만 표시 */
    }

    .game-title {
        font-size: 1.1rem;
    }
}