:root {
    --max-width: 920px;
    --pad: 20px;
    --border: rgba(0, 0, 0, 0.12);
    --link: #3a6ff7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans KR", Arial, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
    padding: var(--pad);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo {
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 12px;
    user-select: none;
}

.company-name {
    font-size: 18px;
    font-weight: 500;
}

/* Main */
.site-main {
    flex: 1;
    padding: 0 var(--pad) 40px;
}

.game-title {
    text-align: center;
    font-size: clamp(44px, 7vw, 72px);
    margin: 10px 0 18px;
}

.divider {
    max-width: var(--max-width);
    margin: 0 auto 24px;
    border: none;
    border-top: 1px solid var(--border);
}

.content {
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 16px;
}

.content-subtitle {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
}

.content p {
    margin: 0 0 14px;
}

/* 본문 링크 */
.inline-link {
    color: var(--link);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inline-link:hover {
    opacity: 0.85;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px var(--pad);
    text-align: center;
    font-size: 14px;
}

.site-footer {
    color: inherit;
    font-size: 20px;
}