/* Shared layout for Miyuuverse policy / static pages */
:root {
    --text-main: #3a2e5d;
    --text-muted: #8c7e9a;
    --accent: #eb6c93;
    --bg: #f8f6fc;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.65;
    font-size: 1rem;
}
header {
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
header a.logo-link {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--text-main); font-weight: 800;
}
header img { height: 36px; width: auto; }
header nav { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; }
header nav a { color: var(--accent); font-weight: 600; text-decoration: none; font-size: 0.92rem; }
header nav a:hover { text-decoration: underline; }
main { max-width: 800px; margin: 0 auto; padding: 40px 24px 80px; }
h1 { font-size: 2rem; margin: 0 0 8px; }
.subtitle { color: var(--text-muted); font-size: 1rem; margin: 0 0 24px; font-weight: 600; }
.updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
h2 { font-size: 1.25rem; margin: 36px 0 12px; color: var(--text-main); }
h3 { font-size: 1.05rem; margin: 24px 0 8px; }
p, ul { margin: 0 0 14px; }
ul { padding-left: 1.25rem; }
.faq-item { margin-bottom: 28px; }
.faq-item h3 { margin-top: 0; color: var(--text-main); font-size: 1.05rem; }
.callout {
    background: rgba(235, 108, 147, 0.08);
    border-left: 4px solid var(--accent);
    padding: 16px 18px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-size: 0.92rem;
}
.callout-warn {
    background: rgba(15, 23, 42, 0.06);
    border-left-color: var(--text-main);
}
a { color: var(--accent); font-weight: 600; }
footer {
    text-align: center;
    padding: 28px 16px 36px;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
footer .foot-policies {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 16px;
    margin-bottom: 16px; max-width: 900px; margin-left: auto; margin-right: auto;
}
footer .foot-policies a { color: var(--text-main); text-decoration: none; font-weight: 600; }
footer .foot-policies a:hover { color: var(--accent); }
.service-grid {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}
@media (min-width: 600px) {
    .service-grid { grid-template-columns: 1fr 1fr; }
}
.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(58, 46, 93, 0.06);
}
.service-card h3 { margin-top: 0; font-size: 1.05rem; }
