/* zine.css */
:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --accent-color: #333333;
    --muted-color: #555555;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 32px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.symbol-wrapper {
    margin-bottom: 0;
}

.zine-post-logo {
    width: 240px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.zine-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.dialogue-box {
    width: 100%;
    min-height: 40px;
}

.dialogue-line {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    color: var(--muted-color);
}

.dialogue-spacer {
    height: 16px;
}

.footer {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    font-family: monospace;
}

/* Mobile responsive */
@media (max-width: 480px) {
    body, html {
        padding-top: 16px;
    }

    .container {
        gap: 16px;
    }

    .zine-title {
        font-size: 20px;
    }

    .dialogue-line {
        font-size: 13px;
    }
}
